-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jul 10, 2026 at 01:51 PM
-- Server version: 11.4.12-MariaDB-cll-lve-log
-- PHP Version: 8.4.22

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


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

--
-- Database: `mrarqpph_everwell`
--

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

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

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

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

--
-- Table structure for table `wpe_comments`
--

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

--
-- Dumping data for table `wpe_comments`
--

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

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

--
-- Table structure for table `wpe_e_events`
--

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

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

--
-- Table structure for table `wpe_e_notes`
--

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

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

--
-- Table structure for table `wpe_e_notes_users_relations`
--

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

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

--
-- Table structure for table `wpe_e_submissions`
--

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

--
-- Dumping data for table `wpe_e_submissions`
--

INSERT INTO `wpe_e_submissions` (`id`, `type`, `hash_id`, `main_meta_id`, `post_id`, `referer`, `referer_title`, `element_id`, `form_name`, `campaign_id`, `user_id`, `user_ip`, `user_agent`, `actions_count`, `actions_succeeded_count`, `status`, `is_read`, `meta`, `created_at_gmt`, `updated_at_gmt`, `created_at`, `updated_at`) VALUES
(1, 'submission', '806ab61a-7b79-4cd5-9863-185e88b31e15', 4, 36, 'https://mrarif.me/everwell/contact-us/', 'Contact Us', '89c2527', 'Contact Us', 0, 0, '76.123.137.21', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.5 Safari/605.1.15', 1, 1, 'new', 0, '{\"edit_post_id\":\"36\"}', '2026-07-05 23:01:28', '2026-07-05 23:01:28', '2026-07-05 23:01:28', '2026-07-05 23:01:28');

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

--
-- Table structure for table `wpe_e_submissions_actions_log`
--

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

--
-- Dumping data for table `wpe_e_submissions_actions_log`
--

INSERT INTO `wpe_e_submissions_actions_log` (`id`, `submission_id`, `action_name`, `action_label`, `status`, `log`, `created_at_gmt`, `updated_at_gmt`, `created_at`, `updated_at`) VALUES
(1, 1, 'email', 'Email', 'success', NULL, '2026-07-05 23:01:28', '2026-07-05 23:01:28', '2026-07-05 23:01:28', '2026-07-05 23:01:28');

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

--
-- Table structure for table `wpe_e_submissions_values`
--

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

--
-- Dumping data for table `wpe_e_submissions_values`
--

INSERT INTO `wpe_e_submissions_values` (`id`, `submission_id`, `key`, `value`) VALUES
(1, 1, 'name', 'Bridget'),
(2, 1, 'field_b94c01e', 'Lee'),
(3, 1, 'email', '3185647023'),
(4, 1, 'field_cc1facf', 'Bridgeto.lee@yahoo.com'),
(5, 1, 'message', 'Hello there!');

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

--
-- Table structure for table `wpe_links`
--

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

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

--
-- Table structure for table `wpe_options`
--

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

--
-- Dumping data for table `wpe_options`
--

INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:12:{i:1783709036;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:1783734245;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:1783737836;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:1783739636;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:1783741436;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:1783777436;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:1783777445;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:1783777446;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:1783777670;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:1783777732;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:1783863836;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/everwell', 'on'),
(3, 'home', 'https://mrarif.me/everwell', 'on'),
(4, 'blogname', 'Everwell Longevity &amp; Wellness', 'on'),
(5, 'blogdescription', 'Welcome', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'arifwebsols@gmail.com', 'on'),
(8, 'start_of_week', '1', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'F j, Y', 'on'),
(25, 'time_format', 'g:i a', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:143:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"elementor_component/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"elementor_component/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"elementor_component/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"elementor_component/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"elementor_component/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"elementor_component/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"elementor_component/([^/]+)/embed/?$\";s:52:\"index.php?elementor_component=$matches[1]&embed=true\";s:40:\"elementor_component/([^/]+)/trackback/?$\";s:46:\"index.php?elementor_component=$matches[1]&tb=1\";s:48:\"elementor_component/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementor_component=$matches[1]&paged=$matches[2]\";s:55:\"elementor_component/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementor_component=$matches[1]&cpage=$matches[2]\";s:44:\"elementor_component/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementor_component=$matches[1]&page=$matches[2]\";s:36:\"elementor_component/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"elementor_component/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"elementor_component/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"elementor_component/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"elementor_component/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"elementor_component/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"e_global_class/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e_global_class/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e_global_class/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e_global_class/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e_global_class/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e_global_class/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e_global_class/([^/]+)/embed/?$\";s:47:\"index.php?e_global_class=$matches[1]&embed=true\";s:35:\"e_global_class/([^/]+)/trackback/?$\";s:41:\"index.php?e_global_class=$matches[1]&tb=1\";s:43:\"e_global_class/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e_global_class=$matches[1]&paged=$matches[2]\";s:50:\"e_global_class/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e_global_class=$matches[1]&cpage=$matches[2]\";s:39:\"e_global_class/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e_global_class=$matches[1]&page=$matches[2]\";s:31:\"e_global_class/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e_global_class/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e_global_class/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e_global_class/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e_global_class/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e_global_class/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=12&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:4:{i:0;s:31:\"backup-backup/backup-backup.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:41:\"powerpack-elements/powerpack-elements.php\";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', 'a:3:{i:0;s:83:\"/home/mrarqpph/public_html/everwell/wp-content/themes/astra-child/css/overwrite.css\";i:1;s:75:\"/home/mrarqpph/public_html/everwell/wp-content/themes/astra-child/style.css\";i:3;s:0:\"\";}', 'off'),
(41, 'template', 'astra', 'on'),
(42, 'stylesheet', 'astra-child', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '61833', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}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', '12', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '52', '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', '1798724636', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'wp_notes_notify', '1', 'on'),
(102, 'initial_db_version', '61833', 'on'),
(103, 'wpe_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:73:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_update_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:14:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:9:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:42:\"elementor_atomic_widgets_access_styles_tab\";b:1;s:45:\"elementor_atomic_widgets_edit_local_css_class\";b:1;s:37:\"elementor_global_classes_remove_class\";b:1;s:36:\"elementor_global_classes_apply_class\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'on'),
(104, 'fresh_site', '0', 'off'),
(105, 'user_count', '1', 'off'),
(106, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'auto'),
(107, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}', 'auto'),
(108, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(122, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:3:\"7.0\";s:5:\"files\";a:596:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:22:\"archives/style-rtl.css\";i:17;s:26:\"archives/style-rtl.min.css\";i:18;s:18:\"archives/style.css\";i:19;s:22:\"archives/style.min.css\";i:20;s:20:\"audio/editor-rtl.css\";i:21;s:24:\"audio/editor-rtl.min.css\";i:22;s:16:\"audio/editor.css\";i:23;s:20:\"audio/editor.min.css\";i:24;s:19:\"audio/style-rtl.css\";i:25;s:23:\"audio/style-rtl.min.css\";i:26;s:15:\"audio/style.css\";i:27;s:19:\"audio/style.min.css\";i:28;s:19:\"audio/theme-rtl.css\";i:29;s:23:\"audio/theme-rtl.min.css\";i:30;s:15:\"audio/theme.css\";i:31;s:19:\"audio/theme.min.css\";i:32;s:21:\"avatar/editor-rtl.css\";i:33;s:25:\"avatar/editor-rtl.min.css\";i:34;s:17:\"avatar/editor.css\";i:35;s:21:\"avatar/editor.min.css\";i:36;s:20:\"avatar/style-rtl.css\";i:37;s:24:\"avatar/style-rtl.min.css\";i:38;s:16:\"avatar/style.css\";i:39;s:20:\"avatar/style.min.css\";i:40;s:25:\"breadcrumbs/style-rtl.css\";i:41;s:29:\"breadcrumbs/style-rtl.min.css\";i:42;s:21:\"breadcrumbs/style.css\";i:43;s:25:\"breadcrumbs/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:19:\"icon/editor-rtl.css\";i:217;s:23:\"icon/editor-rtl.min.css\";i:218;s:15:\"icon/editor.css\";i:219;s:19:\"icon/editor.min.css\";i:220;s:18:\"icon/style-rtl.css\";i:221;s:22:\"icon/style-rtl.min.css\";i:222;s:14:\"icon/style.css\";i:223;s:18:\"icon/style.min.css\";i:224;s:20:\"image/editor-rtl.css\";i:225;s:24:\"image/editor-rtl.min.css\";i:226;s:16:\"image/editor.css\";i:227;s:20:\"image/editor.min.css\";i:228;s:19:\"image/style-rtl.css\";i:229;s:23:\"image/style-rtl.min.css\";i:230;s:15:\"image/style.css\";i:231;s:19:\"image/style.min.css\";i:232;s:19:\"image/theme-rtl.css\";i:233;s:23:\"image/theme-rtl.min.css\";i:234;s:15:\"image/theme.css\";i:235;s:19:\"image/theme.min.css\";i:236;s:29:\"latest-comments/style-rtl.css\";i:237;s:33:\"latest-comments/style-rtl.min.css\";i:238;s:25:\"latest-comments/style.css\";i:239;s:29:\"latest-comments/style.min.css\";i:240;s:27:\"latest-posts/editor-rtl.css\";i:241;s:31:\"latest-posts/editor-rtl.min.css\";i:242;s:23:\"latest-posts/editor.css\";i:243;s:27:\"latest-posts/editor.min.css\";i:244;s:26:\"latest-posts/style-rtl.css\";i:245;s:30:\"latest-posts/style-rtl.min.css\";i:246;s:22:\"latest-posts/style.css\";i:247;s:26:\"latest-posts/style.min.css\";i:248;s:18:\"list/style-rtl.css\";i:249;s:22:\"list/style-rtl.min.css\";i:250;s:14:\"list/style.css\";i:251;s:18:\"list/style.min.css\";i:252;s:22:\"loginout/style-rtl.css\";i:253;s:26:\"loginout/style-rtl.min.css\";i:254;s:18:\"loginout/style.css\";i:255;s:22:\"loginout/style.min.css\";i:256;s:19:\"math/editor-rtl.css\";i:257;s:23:\"math/editor-rtl.min.css\";i:258;s:15:\"math/editor.css\";i:259;s:19:\"math/editor.min.css\";i:260;s:18:\"math/style-rtl.css\";i:261;s:22:\"math/style-rtl.min.css\";i:262;s:14:\"math/style.css\";i:263;s:18:\"math/style.min.css\";i:264;s:25:\"media-text/editor-rtl.css\";i:265;s:29:\"media-text/editor-rtl.min.css\";i:266;s:21:\"media-text/editor.css\";i:267;s:25:\"media-text/editor.min.css\";i:268;s:24:\"media-text/style-rtl.css\";i:269;s:28:\"media-text/style-rtl.min.css\";i:270;s:20:\"media-text/style.css\";i:271;s:24:\"media-text/style.min.css\";i:272;s:19:\"more/editor-rtl.css\";i:273;s:23:\"more/editor-rtl.min.css\";i:274;s:15:\"more/editor.css\";i:275;s:19:\"more/editor.min.css\";i:276;s:30:\"navigation-link/editor-rtl.css\";i:277;s:34:\"navigation-link/editor-rtl.min.css\";i:278;s:26:\"navigation-link/editor.css\";i:279;s:30:\"navigation-link/editor.min.css\";i:280;s:29:\"navigation-link/style-rtl.css\";i:281;s:33:\"navigation-link/style-rtl.min.css\";i:282;s:25:\"navigation-link/style.css\";i:283;s:29:\"navigation-link/style.min.css\";i:284;s:38:\"navigation-overlay-close/style-rtl.css\";i:285;s:42:\"navigation-overlay-close/style-rtl.min.css\";i:286;s:34:\"navigation-overlay-close/style.css\";i:287;s:38:\"navigation-overlay-close/style.min.css\";i:288;s:33:\"navigation-submenu/editor-rtl.css\";i:289;s:37:\"navigation-submenu/editor-rtl.min.css\";i:290;s:29:\"navigation-submenu/editor.css\";i:291;s:33:\"navigation-submenu/editor.min.css\";i:292;s:25:\"navigation/editor-rtl.css\";i:293;s:29:\"navigation/editor-rtl.min.css\";i:294;s:21:\"navigation/editor.css\";i:295;s:25:\"navigation/editor.min.css\";i:296;s:24:\"navigation/style-rtl.css\";i:297;s:28:\"navigation/style-rtl.min.css\";i:298;s:20:\"navigation/style.css\";i:299;s:24:\"navigation/style.min.css\";i:300;s:23:\"nextpage/editor-rtl.css\";i:301;s:27:\"nextpage/editor-rtl.min.css\";i:302;s:19:\"nextpage/editor.css\";i:303;s:23:\"nextpage/editor.min.css\";i:304;s:24:\"page-list/editor-rtl.css\";i:305;s:28:\"page-list/editor-rtl.min.css\";i:306;s:20:\"page-list/editor.css\";i:307;s:24:\"page-list/editor.min.css\";i:308;s:23:\"page-list/style-rtl.css\";i:309;s:27:\"page-list/style-rtl.min.css\";i:310;s:19:\"page-list/style.css\";i:311;s:23:\"page-list/style.min.css\";i:312;s:24:\"paragraph/editor-rtl.css\";i:313;s:28:\"paragraph/editor-rtl.min.css\";i:314;s:20:\"paragraph/editor.css\";i:315;s:24:\"paragraph/editor.min.css\";i:316;s:23:\"paragraph/style-rtl.css\";i:317;s:27:\"paragraph/style-rtl.min.css\";i:318;s:19:\"paragraph/style.css\";i:319;s:23:\"paragraph/style.min.css\";i:320;s:35:\"post-author-biography/style-rtl.css\";i:321;s:39:\"post-author-biography/style-rtl.min.css\";i:322;s:31:\"post-author-biography/style.css\";i:323;s:35:\"post-author-biography/style.min.css\";i:324;s:30:\"post-author-name/style-rtl.css\";i:325;s:34:\"post-author-name/style-rtl.min.css\";i:326;s:26:\"post-author-name/style.css\";i:327;s:30:\"post-author-name/style.min.css\";i:328;s:26:\"post-author/editor-rtl.css\";i:329;s:30:\"post-author/editor-rtl.min.css\";i:330;s:22:\"post-author/editor.css\";i:331;s:26:\"post-author/editor.min.css\";i:332;s:25:\"post-author/style-rtl.css\";i:333;s:29:\"post-author/style-rtl.min.css\";i:334;s:21:\"post-author/style.css\";i:335;s:25:\"post-author/style.min.css\";i:336;s:33:\"post-comments-count/style-rtl.css\";i:337;s:37:\"post-comments-count/style-rtl.min.css\";i:338;s:29:\"post-comments-count/style.css\";i:339;s:33:\"post-comments-count/style.min.css\";i:340;s:33:\"post-comments-form/editor-rtl.css\";i:341;s:37:\"post-comments-form/editor-rtl.min.css\";i:342;s:29:\"post-comments-form/editor.css\";i:343;s:33:\"post-comments-form/editor.min.css\";i:344;s:32:\"post-comments-form/style-rtl.css\";i:345;s:36:\"post-comments-form/style-rtl.min.css\";i:346;s:28:\"post-comments-form/style.css\";i:347;s:32:\"post-comments-form/style.min.css\";i:348;s:32:\"post-comments-link/style-rtl.css\";i:349;s:36:\"post-comments-link/style-rtl.min.css\";i:350;s:28:\"post-comments-link/style.css\";i:351;s:32:\"post-comments-link/style.min.css\";i:352;s:26:\"post-content/style-rtl.css\";i:353;s:30:\"post-content/style-rtl.min.css\";i:354;s:22:\"post-content/style.css\";i:355;s:26:\"post-content/style.min.css\";i:356;s:23:\"post-date/style-rtl.css\";i:357;s:27:\"post-date/style-rtl.min.css\";i:358;s:19:\"post-date/style.css\";i:359;s:23:\"post-date/style.min.css\";i:360;s:27:\"post-excerpt/editor-rtl.css\";i:361;s:31:\"post-excerpt/editor-rtl.min.css\";i:362;s:23:\"post-excerpt/editor.css\";i:363;s:27:\"post-excerpt/editor.min.css\";i:364;s:26:\"post-excerpt/style-rtl.css\";i:365;s:30:\"post-excerpt/style-rtl.min.css\";i:366;s:22:\"post-excerpt/style.css\";i:367;s:26:\"post-excerpt/style.min.css\";i:368;s:34:\"post-featured-image/editor-rtl.css\";i:369;s:38:\"post-featured-image/editor-rtl.min.css\";i:370;s:30:\"post-featured-image/editor.css\";i:371;s:34:\"post-featured-image/editor.min.css\";i:372;s:33:\"post-featured-image/style-rtl.css\";i:373;s:37:\"post-featured-image/style-rtl.min.css\";i:374;s:29:\"post-featured-image/style.css\";i:375;s:33:\"post-featured-image/style.min.css\";i:376;s:34:\"post-navigation-link/style-rtl.css\";i:377;s:38:\"post-navigation-link/style-rtl.min.css\";i:378;s:30:\"post-navigation-link/style.css\";i:379;s:34:\"post-navigation-link/style.min.css\";i:380;s:27:\"post-template/style-rtl.css\";i:381;s:31:\"post-template/style-rtl.min.css\";i:382;s:23:\"post-template/style.css\";i:383;s:27:\"post-template/style.min.css\";i:384;s:24:\"post-terms/style-rtl.css\";i:385;s:28:\"post-terms/style-rtl.min.css\";i:386;s:20:\"post-terms/style.css\";i:387;s:24:\"post-terms/style.min.css\";i:388;s:31:\"post-time-to-read/style-rtl.css\";i:389;s:35:\"post-time-to-read/style-rtl.min.css\";i:390;s:27:\"post-time-to-read/style.css\";i:391;s:31:\"post-time-to-read/style.min.css\";i:392;s:24:\"post-title/style-rtl.css\";i:393;s:28:\"post-title/style-rtl.min.css\";i:394;s:20:\"post-title/style.css\";i:395;s:24:\"post-title/style.min.css\";i:396;s:26:\"preformatted/style-rtl.css\";i:397;s:30:\"preformatted/style-rtl.min.css\";i:398;s:22:\"preformatted/style.css\";i:399;s:26:\"preformatted/style.min.css\";i:400;s:24:\"pullquote/editor-rtl.css\";i:401;s:28:\"pullquote/editor-rtl.min.css\";i:402;s:20:\"pullquote/editor.css\";i:403;s:24:\"pullquote/editor.min.css\";i:404;s:23:\"pullquote/style-rtl.css\";i:405;s:27:\"pullquote/style-rtl.min.css\";i:406;s:19:\"pullquote/style.css\";i:407;s:23:\"pullquote/style.min.css\";i:408;s:23:\"pullquote/theme-rtl.css\";i:409;s:27:\"pullquote/theme-rtl.min.css\";i:410;s:19:\"pullquote/theme.css\";i:411;s:23:\"pullquote/theme.min.css\";i:412;s:39:\"query-pagination-numbers/editor-rtl.css\";i:413;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:414;s:35:\"query-pagination-numbers/editor.css\";i:415;s:39:\"query-pagination-numbers/editor.min.css\";i:416;s:31:\"query-pagination/editor-rtl.css\";i:417;s:35:\"query-pagination/editor-rtl.min.css\";i:418;s:27:\"query-pagination/editor.css\";i:419;s:31:\"query-pagination/editor.min.css\";i:420;s:30:\"query-pagination/style-rtl.css\";i:421;s:34:\"query-pagination/style-rtl.min.css\";i:422;s:26:\"query-pagination/style.css\";i:423;s:30:\"query-pagination/style.min.css\";i:424;s:25:\"query-title/style-rtl.css\";i:425;s:29:\"query-title/style-rtl.min.css\";i:426;s:21:\"query-title/style.css\";i:427;s:25:\"query-title/style.min.css\";i:428;s:25:\"query-total/style-rtl.css\";i:429;s:29:\"query-total/style-rtl.min.css\";i:430;s:21:\"query-total/style.css\";i:431;s:25:\"query-total/style.min.css\";i:432;s:20:\"query/editor-rtl.css\";i:433;s:24:\"query/editor-rtl.min.css\";i:434;s:16:\"query/editor.css\";i:435;s:20:\"query/editor.min.css\";i:436;s:19:\"quote/style-rtl.css\";i:437;s:23:\"quote/style-rtl.min.css\";i:438;s:15:\"quote/style.css\";i:439;s:19:\"quote/style.min.css\";i:440;s:19:\"quote/theme-rtl.css\";i:441;s:23:\"quote/theme-rtl.min.css\";i:442;s:15:\"quote/theme.css\";i:443;s:19:\"quote/theme.min.css\";i:444;s:23:\"read-more/style-rtl.css\";i:445;s:27:\"read-more/style-rtl.min.css\";i:446;s:19:\"read-more/style.css\";i:447;s:23:\"read-more/style.min.css\";i:448;s:18:\"rss/editor-rtl.css\";i:449;s:22:\"rss/editor-rtl.min.css\";i:450;s:14:\"rss/editor.css\";i:451;s:18:\"rss/editor.min.css\";i:452;s:17:\"rss/style-rtl.css\";i:453;s:21:\"rss/style-rtl.min.css\";i:454;s:13:\"rss/style.css\";i:455;s:17:\"rss/style.min.css\";i:456;s:21:\"search/editor-rtl.css\";i:457;s:25:\"search/editor-rtl.min.css\";i:458;s:17:\"search/editor.css\";i:459;s:21:\"search/editor.min.css\";i:460;s:20:\"search/style-rtl.css\";i:461;s:24:\"search/style-rtl.min.css\";i:462;s:16:\"search/style.css\";i:463;s:20:\"search/style.min.css\";i:464;s:20:\"search/theme-rtl.css\";i:465;s:24:\"search/theme-rtl.min.css\";i:466;s:16:\"search/theme.css\";i:467;s:20:\"search/theme.min.css\";i:468;s:24:\"separator/editor-rtl.css\";i:469;s:28:\"separator/editor-rtl.min.css\";i:470;s:20:\"separator/editor.css\";i:471;s:24:\"separator/editor.min.css\";i:472;s:23:\"separator/style-rtl.css\";i:473;s:27:\"separator/style-rtl.min.css\";i:474;s:19:\"separator/style.css\";i:475;s:23:\"separator/style.min.css\";i:476;s:23:\"separator/theme-rtl.css\";i:477;s:27:\"separator/theme-rtl.min.css\";i:478;s:19:\"separator/theme.css\";i:479;s:23:\"separator/theme.min.css\";i:480;s:24:\"shortcode/editor-rtl.css\";i:481;s:28:\"shortcode/editor-rtl.min.css\";i:482;s:20:\"shortcode/editor.css\";i:483;s:24:\"shortcode/editor.min.css\";i:484;s:24:\"site-logo/editor-rtl.css\";i:485;s:28:\"site-logo/editor-rtl.min.css\";i:486;s:20:\"site-logo/editor.css\";i:487;s:24:\"site-logo/editor.min.css\";i:488;s:23:\"site-logo/style-rtl.css\";i:489;s:27:\"site-logo/style-rtl.min.css\";i:490;s:19:\"site-logo/style.css\";i:491;s:23:\"site-logo/style.min.css\";i:492;s:27:\"site-tagline/editor-rtl.css\";i:493;s:31:\"site-tagline/editor-rtl.min.css\";i:494;s:23:\"site-tagline/editor.css\";i:495;s:27:\"site-tagline/editor.min.css\";i:496;s:26:\"site-tagline/style-rtl.css\";i:497;s:30:\"site-tagline/style-rtl.min.css\";i:498;s:22:\"site-tagline/style.css\";i:499;s:26:\"site-tagline/style.min.css\";i:500;s:25:\"site-title/editor-rtl.css\";i:501;s:29:\"site-title/editor-rtl.min.css\";i:502;s:21:\"site-title/editor.css\";i:503;s:25:\"site-title/editor.min.css\";i:504;s:24:\"site-title/style-rtl.css\";i:505;s:28:\"site-title/style-rtl.min.css\";i:506;s:20:\"site-title/style.css\";i:507;s:24:\"site-title/style.min.css\";i:508;s:26:\"social-link/editor-rtl.css\";i:509;s:30:\"social-link/editor-rtl.min.css\";i:510;s:22:\"social-link/editor.css\";i:511;s:26:\"social-link/editor.min.css\";i:512;s:27:\"social-links/editor-rtl.css\";i:513;s:31:\"social-links/editor-rtl.min.css\";i:514;s:23:\"social-links/editor.css\";i:515;s:27:\"social-links/editor.min.css\";i:516;s:26:\"social-links/style-rtl.css\";i:517;s:30:\"social-links/style-rtl.min.css\";i:518;s:22:\"social-links/style.css\";i:519;s:26:\"social-links/style.min.css\";i:520;s:21:\"spacer/editor-rtl.css\";i:521;s:25:\"spacer/editor-rtl.min.css\";i:522;s:17:\"spacer/editor.css\";i:523;s:21:\"spacer/editor.min.css\";i:524;s:20:\"spacer/style-rtl.css\";i:525;s:24:\"spacer/style-rtl.min.css\";i:526;s:16:\"spacer/style.css\";i:527;s:20:\"spacer/style.min.css\";i:528;s:20:\"table/editor-rtl.css\";i:529;s:24:\"table/editor-rtl.min.css\";i:530;s:16:\"table/editor.css\";i:531;s:20:\"table/editor.min.css\";i:532;s:19:\"table/style-rtl.css\";i:533;s:23:\"table/style-rtl.min.css\";i:534;s:15:\"table/style.css\";i:535;s:19:\"table/style.min.css\";i:536;s:19:\"table/theme-rtl.css\";i:537;s:23:\"table/theme-rtl.min.css\";i:538;s:15:\"table/theme.css\";i:539;s:19:\"table/theme.min.css\";i:540;s:23:\"tag-cloud/style-rtl.css\";i:541;s:27:\"tag-cloud/style-rtl.min.css\";i:542;s:19:\"tag-cloud/style.css\";i:543;s:23:\"tag-cloud/style.min.css\";i:544;s:28:\"template-part/editor-rtl.css\";i:545;s:32:\"template-part/editor-rtl.min.css\";i:546;s:24:\"template-part/editor.css\";i:547;s:28:\"template-part/editor.min.css\";i:548;s:27:\"template-part/theme-rtl.css\";i:549;s:31:\"template-part/theme-rtl.min.css\";i:550;s:23:\"template-part/theme.css\";i:551;s:27:\"template-part/theme.min.css\";i:552;s:24:\"term-count/style-rtl.css\";i:553;s:28:\"term-count/style-rtl.min.css\";i:554;s:20:\"term-count/style.css\";i:555;s:24:\"term-count/style.min.css\";i:556;s:30:\"term-description/style-rtl.css\";i:557;s:34:\"term-description/style-rtl.min.css\";i:558;s:26:\"term-description/style.css\";i:559;s:30:\"term-description/style.min.css\";i:560;s:23:\"term-name/style-rtl.css\";i:561;s:27:\"term-name/style-rtl.min.css\";i:562;s:19:\"term-name/style.css\";i:563;s:23:\"term-name/style.min.css\";i:564;s:28:\"term-template/editor-rtl.css\";i:565;s:32:\"term-template/editor-rtl.min.css\";i:566;s:24:\"term-template/editor.css\";i:567;s:28:\"term-template/editor.min.css\";i:568;s:27:\"term-template/style-rtl.css\";i:569;s:31:\"term-template/style-rtl.min.css\";i:570;s:23:\"term-template/style.css\";i:571;s:27:\"term-template/style.min.css\";i:572;s:27:\"text-columns/editor-rtl.css\";i:573;s:31:\"text-columns/editor-rtl.min.css\";i:574;s:23:\"text-columns/editor.css\";i:575;s:27:\"text-columns/editor.min.css\";i:576;s:26:\"text-columns/style-rtl.css\";i:577;s:30:\"text-columns/style-rtl.min.css\";i:578;s:22:\"text-columns/style.css\";i:579;s:26:\"text-columns/style.min.css\";i:580;s:19:\"verse/style-rtl.css\";i:581;s:23:\"verse/style-rtl.min.css\";i:582;s:15:\"verse/style.css\";i:583;s:19:\"verse/style.min.css\";i:584;s:20:\"video/editor-rtl.css\";i:585;s:24:\"video/editor-rtl.min.css\";i:586;s:16:\"video/editor.css\";i:587;s:20:\"video/editor.min.css\";i:588;s:19:\"video/style-rtl.css\";i:589;s:23:\"video/style-rtl.min.css\";i:590;s:15:\"video/style.css\";i:591;s:19:\"video/style.min.css\";i:592;s:19:\"video/theme-rtl.css\";i:593;s:23:\"video/theme-rtl.min.css\";i:594;s:15:\"video/theme.css\";i:595;s:19:\"video/theme.min.css\";}}', 'on'),
(172, 'bsf_usage_migrated', '1', 'off'),
(173, 'astra-settings', 'a:28:{s:18:\"theme-auto-version\";s:6:\"4.13.5\";s:22:\"is_theme_queue_running\";b:0;s:16:\"body-font-family\";s:23:\"\'Open Sans\', sans-serif\";s:17:\"body-font-variant\";s:15:\"400,500,600,700\";s:20:\"headings-font-family\";s:25:\"\'Playfair Display\', serif\";s:20:\"headings-font-weight\";s:3:\"400\";s:21:\"headings-font-variant\";s:23:\"400,500,600,700,800,900\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:48;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";i:34;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: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-h5\";a:6:{s:7:\"desktop\";i:23;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:23:\"underline-content-links\";b:0;s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:20:\"global-color-palette\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#bd9066\";i:1;s:7:\"#294c4e\";i:2;s:7:\"#060606\";i:3;s:7:\"#393939\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f7f1ec\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:0;}s:11:\"theme-color\";s:7:\"#ab733e\";s:38:\"theme-button-border-group-border-color\";s:0:\"\";s:12:\"button-color\";s:25:\"var(--ast-global-color-4)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-4)\";s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-0)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-1)\";s:18:\"font-family-button\";s:23:\"\'Open Sans\', sans-serif\";s:18:\"font-extras-button\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:1:\"1\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"36\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"36\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"theme-button-border-group-border-size\";a:4:{s:3:\"top\";s:2:\"-2\";s:5:\"right\";s:2:\"-2\";s:6:\"bottom\";s:2:\"-2\";s:4:\"left\";s:2:\"-2\";}}', 'on'),
(174, 'astra_notices_allowed', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(175, 'astra_usage_installed_time', '1783172909', 'off'),
(2299, '_transient_timeout_astra-theme-cron-test-ok', '1783709108', 'off'),
(2300, '_transient_astra-theme-cron-test-ok', '1', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(178, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:1:{s:9:\"elementor\";a:35:{s:4:\"name\";s:63:\"Elementor Website Builder &#8211; more than just a page builder\";s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:5:\"4.1.4\";s:6:\"author\";s:64:\"<a href=\"https://profiles.wordpress.org/elemntor/\">Elementor</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:3:\"7.0\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:6131;i:4;i:231;i:3;i:121;i:2;i:116;i:1;i:677;}s:11:\"num_ratings\";i:7276;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:48;s:24:\"support_threads_resolved\";i:39;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:21:\"2026-06-21 1:20pm GMT\";s:5:\"added\";s:10:\"2016-05-30\";s:8:\"homepage\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:8:\"sections\";a:6:{s:11:\"description\";s:24938:\"<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/ROEC0CPRO3w?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe></span></p>\n<h4>THE #1 NO CODE DRAG &amp; DROP WORDPRESS WEBSITE BUILDER POWERING 22M+ WEBSITES WORLDWIDE, NOW WITH AI.</h4>\n<p>Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly with its no-code, drag-and-drop Atomic Editor.</p>\n<p>Supporting the full website lifecycle, Elementor enables you to confidently build, optimize, and manage your website with extended capabilities such as AI-powered creation, image optimization, transactional email delivery, accessibility tools, performance boosters, and more.</p>\n<p>Now in version 4 – the Atomic Editor! Introducing a new generation of performance-first atomic building blocks that allow you to control every atomic part with no limits or locked layouts. Define your global design systems and reusable components once, and they apply everywhere instantly – turning hours or even days of work into single clicks.</p>\n<p>Unlock all features with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/\" rel=\"nofollow ugc\">Elementor One</a></strong>.</p>\n<p>Need fast and secure cloud hosting for your Elementor site? Try out <strong><a href=\"https://elemn.to/repo-hosting\" rel=\"nofollow ugc\">Elementor Host</a></strong> Powered by Google Cloud &amp; Cloudflare. 4.9/5 TrustPilot score.</p>\n<h3>🌟 Create professional stunning websites</h3>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Intuitive drag &amp; drop builder</a></strong>: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/\" rel=\"nofollow ugc\">Pixel-perfect design tools</a></strong>: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/\" rel=\"nofollow ugc\">Template Library</a></strong>: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.  </li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Advanced widgets</a></strong>: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-ai/\" rel=\"nofollow ugc\">AI capabilities</a></strong>: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.</li>\n</ul>\n<h4>🗝️ Key features</h4>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-global-settings/\" rel=\"nofollow ugc\">Design system</a></strong>: Use Variables and Classes for consistent colors, typography, and design elements, ensuring a cohesive, professional look that updates everywhere globally.  </li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-responsive-design/\" rel=\"nofollow ugc\">Responsive design</a></strong>: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.  </li>\n<li><strong>Mask shapes</strong>: Turning any element, like an image or video, into whatever shape you desire to create standout designs.  </li>\n<li><strong>CSS transform</strong>: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.  </li>\n<li><strong>Entrance animations</strong>: Add entrance animations to elements to create engaging and interactive user experiences.  </li>\n<li><strong><a href=\"https://elementor.com/features/#SaveBackup\" rel=\"nofollow ugc\">Revision history</a></strong>: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-developers-developers-website/\" rel=\"nofollow ugc\">Developer-friendly</a></strong>: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.  </li>\n<li><strong><a href=\"https://elementor.com/features/contact-button/\" rel=\"nofollow ugc\">Floating buttons</a></strong>: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.  </li>\n<li><strong>Components [Pro]</strong>: Reuse the same building blocks across pages and sites, and update them everywhere they appear. Including controlled content editing, allowing collaborators and clients to update only exposed content properties without breaking layout or styling.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/\" rel=\"nofollow ugc\">Theme Builder</a> [Pro]</strong>: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/\" rel=\"nofollow ugc\">Popup Builder</a> [Pro]</strong>: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/\" rel=\"nofollow ugc\">Forms</a> [Pro]</strong>: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/\" rel=\"nofollow ugc\">WooCommerce Builder</a> [Pro]</strong>: Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/\" rel=\"nofollow ugc\">Dynamic Content</a> [Pro]</strong>: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.  </li>\n<li><strong><a href=\"https://go.elementor.com/features-page-notes/\" rel=\"nofollow ugc\">Notes</a> [Pro]</strong>: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.  </li>\n<li><strong>Custom Code [Pro]</strong>: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.  </li>\n<li><strong>Custom CSS [Pro]</strong>: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.  </li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/\" rel=\"nofollow ugc\">Motion effects</a> [Pro]</strong>: Add advanced motion effects to elements for a more dynamic and engaging user experience.  </li>\n<li><strong>Custom fonts and icons [Pro]</strong>: Upload and use custom fonts and icons to match your brand’s identity.</li>\n</ul>\n<h4>😍 Elementor FREE widgets</h4>\n<p>Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:</p>\n<ul>\n<li><strong>Heading</strong>: Add eye-catching headlines.  </li>\n<li><strong>Image</strong>: Control the size, opacity and more.  </li>\n<li><strong>Text Editor</strong>: Just like the WordPress text editor.  </li>\n<li><strong>Video</strong>: Add YouTube, Vimeo, VideoPress, Dailymotion or self-hosted videos.  </li>\n<li><strong>Button</strong>: Create interactive buttons.  </li>\n<li><strong>Link in Bio</strong>: Build link in bio components to promote your business / services.  </li>\n<li><strong>Image Box</strong>: A box with image, headline and text.  </li>\n<li><strong>Testimonials</strong>: Customer testimonials.  </li>\n<li><strong>Icon</strong>: Place one or more of 600+ icons available.  </li>\n<li><strong>Icon Box</strong>: An icon, headline, and text with one widget.  </li>\n<li><strong>Social Icons</strong>: Link to your social pages with the Facebook/X (formerly Twitter) icons.  </li>\n<li><strong>Image Gallery</strong>: Display your images in a grid.  </li>\n<li><strong>Image Carousel</strong>: Create rotating carousels or sliders for chosen images.  </li>\n<li><strong>Icon List</strong>: Use any icon to create a bullet list.  </li>\n<li><strong>Counter</strong>: Show numbers in an escalating manner.  </li>\n<li><strong>Progress Bar</strong>: Include an escalating progress bar.  </li>\n<li><strong>Nested Tabs</strong>: Display content in vertical or horizontal tabs.  </li>\n<li><strong>Nested Accordion</strong>: Display any type of content in collapsible sections.  </li>\n<li><strong>Rating</strong>: Display how many stars (or another icon) other visitors gave.  </li>\n<li><strong>Alert</strong>: Include a colored alert box to draw visitor’s attention.  </li>\n<li><strong>HTML</strong>: Insert code into the page.  </li>\n<li><strong>Shortcode</strong>: Insert shortcodes from any plugin into the page.  </li>\n<li><strong>Menu Anchor</strong>: Link any menu to this anchor.  </li>\n<li><strong>Read More</strong>: Set the Read More cut-off for the excerpt in archive pages.  </li>\n<li><strong>Sidebar</strong>: Add sidebars onto the page.  </li>\n<li><strong>Google Maps</strong>: Embed maps into the page.  </li>\n<li><strong>SoundCloud</strong>: Add SoundCloud audio bits.  </li>\n<li><strong>Divider</strong>: Separate content with a designed divider.  </li>\n<li><strong>Spacer</strong>: Add space between elements.  </li>\n<li><strong>Text Path</strong>: Attach your text to a path.  </li>\n<li><strong>And counting…</strong></li>\n</ul>\n<h3>🚀 Enhance your website</h3>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-performance-performance-page/\" rel=\"nofollow ugc\">High-performing websites</a></strong>: Website performance impacts your visitors’ experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.</p>\n<p><strong>Key features include:</strong></p>\n<ul>\n<li><strong>Reduced DOM output</strong>: Streamlined HTML structure for faster rendering.  </li>\n<li><strong>Improved media file loading</strong>: Optimized loading of images, videos, and other media assets.  </li>\n<li><strong>Reduced CSS and JS files</strong>: Minimized stylesheets and scripts individually loaded only on demand for quicker loading times.  </li>\n<li><strong>Lazy loading</strong>: Deferred loading of non-critical resources to improve initial page load speed.  </li>\n<li><strong>Faster font loading</strong>: Efficient delivery of web fonts to enhance text rendering speed.  </li>\n<li><strong>Optimized front-end asset loading</strong>: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.  </li>\n<li><strong>Element caching</strong>: Cache frequently accessed design elements to reduce server response time and enhance overall performance.</li>\n</ul>\n<h3>🔥 Elementor Editor Pro features</h3>\n<p>Create unparalleled websites while saving time, money and resources with <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a>’s full website builder. Get access to 100+ professional widgets, features, and tools.</p>\n<p><strong>Editor Pro design widgets:</strong></p>\n<ol>\n<li><strong>Posts</strong>: Display your blog posts with customizable layouts and styles.  </li>\n<li><strong>Share Buttons</strong>: Allow visitors to easily share your content on various social media platforms.  </li>\n<li><strong>Portfolio</strong>: Showcase your work or projects with stunning portfolio layouts.  </li>\n<li><strong>Slides</strong>: Create dynamic slideshows with custom animations and transitions.  </li>\n<li><strong>Form</strong>: Design and customize advanced forms for user interaction and data collection.  </li>\n<li><strong>Login</strong>: Add a login form or user registration module to your website.  </li>\n<li><strong>Nav Menu</strong>: Customize and style your website’s navigation menu for better user experience.  </li>\n<li><strong>Animated Headline</strong>: Create attention-grabbing headlines with animated effects.  </li>\n<li><strong>Price Table</strong>: Display pricing plans or packages in a structured and visually appealing format.  </li>\n<li><strong>Price List</strong>: Showcase a list of prices or services with customizable styling options.  </li>\n<li><strong>Gallery</strong>: Create beautiful image galleries with various layout options and lightbox support.  </li>\n<li><strong>Flip Box</strong>: Add interactive flip animations to highlight content or features.  </li>\n<li><strong>Call to Action</strong>: Encourage user interaction and conversions with compelling call-to-action sections.  </li>\n<li><strong>Media Carousel</strong>: Showcase a carousel of media files such as images or videos.  </li>\n<li><strong>Testimonial Carousel</strong>: Display client testimonials in a carousel format for social proof.  </li>\n<li><strong>Nested Carousel</strong>: Create nested carousels for more complex content organization.  </li>\n<li><strong>Loop Carousel</strong>: Display content in a looped carousel for continuous viewing.  </li>\n<li><strong>Table of Contents</strong>: Generate a table of contents for longer articles or guides to improve navigation.  </li>\n<li><strong>Countdown</strong>: Add countdown timers to create urgency for promotions or events.  </li>\n<li><strong>Facebook Page</strong>: Embed your Facebook page feed or content onto your website.  </li>\n<li><strong>Blockquote</strong>: Highlight quotes or testimonials with stylish formatting options.  </li>\n<li><strong>Template</strong>: Save and reuse design templates for consistent branding and layout.  </li>\n<li><strong>Reviews</strong>: Showcase customer reviews and ratings to build trust and credibility.  </li>\n<li><strong>Facebook Button</strong>: Add buttons to promote interactions with your Facebook page or content.  </li>\n<li><strong>Facebook Embed</strong>: Embed Facebook posts or content onto your website.  </li>\n<li><strong>Facebook Comments</strong>: Enable Facebook comments on your website’s pages or posts.  </li>\n<li><strong>PayPal Button</strong>: Integrate PayPal buttons for easy online payments.  </li>\n<li><strong>Stripe Button</strong>: Integrate Stripe payment buttons to facilitate secure online transactions.  </li>\n<li><strong>Lottie Widget</strong>: Add Lottie animations to enhance visual appeal and engagement.  </li>\n<li><strong>Code Highlight</strong>: Display code snippets with syntax highlighting for better readability.  </li>\n<li><strong>Video Playlist</strong>: Create and customize playlists for video content on your website.  </li>\n<li><strong>Mega Menu</strong>: Customize advanced menus for better navigation and displaying complex content.  </li>\n<li><strong>Off Canvas</strong>: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.</li>\n</ol>\n<p><strong>Editor Pro theme widgets:</strong></p>\n<p>Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more…</p>\n<ol>\n<li><strong>Post Title</strong>: Customize the title of individual blog posts or pages.  </li>\n<li><strong>Post Excerpt</strong>: Display a brief summary or teaser of your blog posts.  </li>\n<li><strong>Post Content</strong>: Customize the main content area of your blog posts or pages.  </li>\n<li><strong>Featured Image</strong>: Set and customize featured images for blog posts or pages.  </li>\n<li><strong>Author Box</strong>: Display author information and bios on blog posts.  </li>\n<li><strong>Post Comments</strong>: Customize the appearance and functionality of comments sections on your website.  </li>\n<li><strong>Post Navigation</strong>: Add navigation links to adjacent posts for easy browsing.  </li>\n<li><strong>Post Info</strong>: Display additional information about blog posts, such as author and date.  </li>\n<li><strong>Site Logo</strong>: Upload and customize your website’s logo for branding purposes.  </li>\n<li><strong>Site Title</strong>: Customize the title of your website.  </li>\n<li><strong>Page Title</strong>: Customize the title of individual pages.  </li>\n<li><strong>Search Bar</strong>: Add a search bar to allow users to search your website’s content.  </li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation.  </li>\n<li><strong>Sitemap</strong>: Generate a sitemap for better search engine indexing and user navigation.  </li>\n<li><strong>Loop Grid</strong>: Design and customize grid layouts for blog post archives or product listings.</li>\n</ol>\n<p><strong>Editor Pro WooCommerce widgets:</strong></p>\n<p>Design and customize a complete online shopping experience across your entire website.</p>\n<ol>\n<li><strong>Product</strong>: Display individual products with customizable layouts and styles.  </li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation within your store.  </li>\n<li><strong>Product Title</strong>: Customize the title of individual products.  </li>\n<li><strong>Product Images</strong>: Set and customize images for product listings.  </li>\n<li><strong>Product Price</strong>: Display the price of individual products.  </li>\n<li><strong>Add To Cart</strong>: Add customizable add to cart buttons for easy purchasing.  </li>\n<li><strong>Product Rating</strong>: Display ratings and reviews for products.  </li>\n<li><strong>Product Stock</strong>: Display stock availability for products.  </li>\n<li><strong>Product Meta</strong>: Display additional information about products, such as SKU and categories.  </li>\n<li><strong>Product Content</strong>: Customize the main content area of product descriptions.  </li>\n<li><strong>Short Description</strong>: Display brief summaries or teasers of products.  </li>\n<li><strong>Product Data Tabs</strong>: Organize product information into tabbed sections for better organization.  </li>\n<li><strong>Additional Information</strong>: Display additional details about products, such as dimensions and weight.  </li>\n<li><strong>Product Related</strong>: Showcase related products to encourage additional purchases.  </li>\n<li><strong>Upsells</strong>: Promote upsell products to increase average order value.  </li>\n<li><strong>Products</strong>: Display a grid or list of products with customizable settings.  </li>\n<li><strong>Custom Add To Cart</strong>: Customize the add to cart button for specific products.  </li>\n<li><strong>WooCommerce Pages</strong>: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.  </li>\n<li><strong>Product Categories</strong>: Display product categories for easy navigation within your store.  </li>\n<li><strong>Menu Cart</strong>: Display a cart icon in your navigation menu for easy access to the shopping cart.  </li>\n<li><strong>Cart</strong>: Customize the appearance and functionality of the shopping cart page.  </li>\n<li><strong>Checkout</strong>: Customize the appearance and functionality of the checkout page.  </li>\n<li><strong>My Account</strong>: Customize the appearance and functionality of the customer account area.  </li>\n<li><strong>Purchase Summary</strong>: Display a summary of purchases during the checkout process.  </li>\n<li><strong>WooCommerce Notices</strong>: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.</li>\n</ol>\n<p>Build professional websites with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a></strong>!</p>\n<h4>🔒 Security and compliance</h4>\n<p>Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures and highlight our dedication to adhering to recognized industry standards.</p>\n<p>We encourage ethical security research through our <a href=\"https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/\" rel=\"nofollow ugc\">Bug Bounty program</a>. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.</p>\n<p>For more information: <a href=\"https://go.elementor.com/trust-center/\" rel=\"nofollow ugc\">Trust Center</a>.</p>\n<h4>♿ Accessibility best practices</h4>\n<p>Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.</p>\n<h4>🌐 Translated to 63+ languages, includes RTL support</h4>\n<p>Elementor supports multiple languages, typographies, and RTL, with editor translations in <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">over 63 languages</a>.</p>\n<p>It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via <a href=\"https://translate.wordpress.org/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. See our guide on <a href=\"https://go.elementor.com/wp-repo-description-tab-help-center-translate/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n<h4>🧩 Use of 3rd-party services</h4>\n<p>To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:</p>\n<ul>\n<li>Google Fonts are loaded to add additional fonts to your website. Google’s <a href=\"https://policies.google.com/terms\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://policies.google.com/privacy\" rel=\"nofollow ugc\">Privacy Policy</a> apply.  </li>\n<li>Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly stated, and require your approval and manual opt-in. Learn more in our <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-terms/\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</li>\n</ul>\n<h4>📧 Related products by Elementor</h4>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-io/\" rel=\"nofollow ugc\">Image Optimization</a></strong>: Superior image compression for faster, high-quality website performance.</p>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-sm/\" rel=\"nofollow ugc\">Email Deliverability</a></strong>: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.</p>\n<p><strong><a href=\"http://go.elementor.com/editor-acc-wp-repo\" rel=\"nofollow ugc\">Web Accessibility</a></strong>: Enhances website usability for individuals with disabilities. Ally is designed to help web creators make their websites more inclusive. It scans, detects, and remediates key accessibility violations, working seamlessly on all WordPress and Elementor websites.</p>\n<h4>📣 See what our users have to say</h4>\n<blockquote>\n<p>“Elementor is hands down the best page builder out there” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/elementor-is-hands-down-the-best-page-builder-out-there/\" rel=\"ugc\">Graphicvision1</a></em></p>\n<p>“An incredibly user-friendly plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/a-wonderful-experience/\" rel=\"ugc\">Hyeyoga</a></em></p>\n<p>“Easily, my most used WP plugin” –  &hellip;</p>\n</blockquote>\n\";s:12:\"installation\";s:2338:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>WordPress 6.8 or greater</li>\n<li>PHP version 7.4 or greater</li>\n<li>MySQL version 5.6 or MariaDB version 10.5 or greater</li>\n<li>PHP Memory limit of 256 MB or greater</li>\n<li>WordPress Memory limit of 256 MB or greater</li>\n</ul>\n<h4>Recommended Requirements</h4>\n<ul>\n<li>WordPress 7.0 or greater</li>\n<li>PHP version 8.3 or greater</li>\n<li>MySQL version 8.0 or MariaDB version 10.6 or greater</li>\n<li>PHP Memory limit of 512 MB (768 MB for best performance) or greater</li>\n<li>WordPress Memory limit of 512 MB (768 MB for best performance) or greater</li>\n</ul>\n<p><span class=\"embed-youtube\" style=\"text-align:center; display: block;\"><iframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9EZ159ryFNs?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\"></iframe></span></p>\n<p><strong>Note:</strong> These requirements are for Elementor and Elementor Pro only. If you are using additional plugins on your site that also have minimum requirements such as WooCommerce or Elementor addons, you may need to increase your PHP and WordPress Memory limit to help avoid loading issues. See also, the following documentation <a href=\"https://elementor.com/help/elementor-widget-panel-not-loading/\" rel=\"nofollow ugc\">Elementor Widget Panel Not Loading</a>.</p>\n<h4>Installation</h4>\n<ol>\n<li>Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the <code>wp-content/plugins/</code> directory of your WordPress installation.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n<li>Go to Pages &gt; Add New</li>\n<li>Press the &#8216;Edit with Elementor&#8217; button.</li>\n<li>Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.</li>\n</ol>\n<p>For documentation and tutorials visit our <a href=\"https://elementor.com/help/?utm_source=wp-repo&amp;utm_medium=link&amp;utm_campaign=readme\" rel=\"nofollow ugc\">Knowledge Base</a>.</p>\n\";s:3:\"faq\";s:5054:\"\n<dt id=\"how%20do%20i%20install%20elementor%20editor%3F\">\nHow do I install Elementor Editor?\n</h4>\n<p>\n<p>To install the free version of Elementor Editor, follow the steps below:<br />\nFrom your WordPress dashboard -&gt; Go to Plugins -&gt; Click on ‘Add new’-&gt; In the Search field, enter Elementor and choose Elementor website builder.<br />\nPress install -&gt; After installation, click Activate.</p>\n</p>\n<dt id=\"does%20elementor%20editor%20work%20with%20all%20the%20themes%3F\">\nDoes Elementor Editor work with all the themes?\n</h4>\n<p>\n<p>Elementor Editor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor’s <a href=\"https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/\" rel=\"nofollow ugc\">Hello Theme</a>, a lightweight blank canvas, to enjoy full flexibility when using Elementor Editor, and optimize your experience.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20gutenberg%3F\">\nIs Elementor Editor compatible with Gutenberg?\n</h4>\n<p>\n<p>Elementor Editor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.</p>\n</p>\n<dt id=\"can%20i%20create%20an%20online%20store%3F\">\nCan I create an online store?\n</h4>\n<p>\n<p>Yes, with the Elementor Editor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.</p>\n</p>\n<dt id=\"does%20it%20work%20with%20other%20wordpress%20plugins%3F\">\nDoes it work with other WordPress plugins?\n</h4>\n<p>\n<p>It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor Editor.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20code%3F\">\nDo I need to know how to code?\n</h4>\n<p>\n<p>No! Elementor Editor provides you with all the widgets and features that you need to build a professional website without using code.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20design%3F\">\nDo I need to know how to design?\n</h4>\n<p>\n<p>No, you can choose between professionally designed kits and templates that fit to every industry and have all you need to create your own professional website.</p>\n</p>\n<dt id=\"will%20elementor%20editor%20slow%20down%20my%20website%3F\">\nWill Elementor Editor slow down my website?\n</h4>\n<p>\n<p>As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of the Editor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.</p>\n</p>\n<dt id=\"is%20my%20site%20secure%20with%20elementor%20editor%3F\">\nIs my site secure with Elementor Editor?\n</h4>\n<p>\n<p>The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.</p>\n<p>There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.</p>\n</p>\n<dt id=\"can%20i%20buy%20templates%20separately%3F\">\nCan I buy templates separately?\n</h4>\n<p>\n<p>Of course, you can use any template that supports Elementor Editor.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20post%20and%20custom%20post%20types%3F\">\nIs Elementor Editor compatible with Post and Custom Post Types?\n</h4>\n<p>\n<p>Of course! You can set which post types will enable Elementor in the settings page.</p>\n</p>\n<dt id=\"what%20is%20the%20difference%20between%20elementor%E2%80%99s%20free%20editor%20plugin%20and%20elementor%20editor%20pro%3F\">\nWhat is the difference between Elementor’s free Editor plugin and Elementor Editor Pro?\n</h4>\n<p>\n<p>Elementor Editor’s Free version allows you to explore our revolutionary drag &amp; drop live editor, basic widgets and templates. Elementor Editor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.</p>\n</p>\n<dt id=\"how%20can%20i%20become%20a%20contributor%3F\">\nHow can I become a Contributor?\n</h4>\n<p>\n<p>If you want to contribute, go to our <a href=\"https://github.com/elementor/elementor\" rel=\"nofollow ugc\">Elementor GitHub Repository</a> and see where you can help. You can also add a new language via <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. We’ve built a short guide explaining <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:3187:\"<h4>4.1.4 &#8211; 2026-06-21</h4>\n<ul>\n<li>Fix: Improved code security enforcement in query handling</li>\n</ul>\n<h4>4.1.3 &#8211; 2026-06-10</h4>\n<ul>\n<li>Fix: Cloud Library screenshot errors could prevent users from saving templates locally</li>\n</ul>\n<h4>4.1.2 &#8211; 2026-06-08</h4>\n<ul>\n<li>Tweak: Improved Global Classes usage tracking for safer deletion &#8211; Atomic Editor</li>\n<li>Fix: Image with Lightbox inherits default button styles &#8211; Atomic Editor</li>\n<li>Fix: Image settings are not saved when using Insert from URL &#8211; Atomic Editor</li>\n<li>Fix: Media attachments may be requested too many times in the Editor &#8211; Atomic Editor</li>\n<li>Fix: Pages using Global Classes may fail to publish or show missing styles on the live site &#8211; Atomic Editor</li>\n<li>Fix: Editor context may not sync correctly when navigating between documents</li>\n</ul>\n<h4>4.1.1 &#8211; 2026-05-27</h4>\n<ul>\n<li>Security Fix: Improved code security enforcement in content handling</li>\n<li>Security Fix: Improved code security enforcement in template handling</li>\n<li>Fix: Hiding one filter prevents other filters from being applied &#8211; Atomic Editor</li>\n</ul>\n<h4>4.1.0 &#8211; 2026-05-26</h4>\n<ul>\n<li>New: Introducing the Design System panel for managing Variables and Classes in one place &#8211; Atomic Editor</li>\n<li>New: Introducing Angie in the Editor to help generate and modify Atomic layouts, Components, Forms, Classes, and Variables &#8211; Atomic Editor</li>\n<li>New: Introducing Markdown rendering as an Alpha experiment to improve how content is structured for AI systems</li>\n<li>Tweak: Added import and export for Variables and Classes from the Design System panel &#8211; Atomic Editor</li>\n<li>Tweak: Increased the Class limit to 1000 &#8211; Atomic Editor</li>\n<li>Tweak: Added duplicate support for Variables in the Variables Manager &#8211; Atomic Editor</li>\n<li>Tweak: Added duplicate support for Classes in the Class field &#8211; Atomic Editor</li>\n<li>Tweak: Added support for Variables in additional style controls, including Effects, Filters, and Box Shadow &#8211; Atomic Editor</li>\n<li>Tweak: Added multi-select support to Direction control in Interactions &#8211; Atomic Editor</li>\n<li>Tweak: Added Interaction actions to the History panel &#8211; Atomic Editor</li>\n<li>Tweak: Added support for negative Box Shadow values &#8211; Atomic Editor</li>\n<li>Tweak: Improved reordering of Component properties with full drag-and-drop support &#8211; Atomic Editor</li>\n<li>Tweak: Updated Position and Z-index control visibility and behavior &#8211; Atomic Editor</li>\n<li>Tweak: Updated the minimum required WordPress version to 6.8</li>\n<li>Tweak: Added the External URL option to Image control &#8211; Atomic Editor</li>\n<li>Fix: Slide Interactions can be applied without selecting a direction &#8211; Atomic Editor</li>\n<li>Fix: Undo does not work as expected for individual Class properties &#8211; Atomic Editor</li>\n<li>Fix: Font family values persist on Global Classes after deletion &#8211; Atomic Editor</li>\n</ul>\n<p><a href=\"https://go.elementor.com/full-changelog/\" rel=\"nofollow ugc\">See changelog for all versions.</a></p>\n\";s:11:\"screenshots\";s:3162:\"<ol><li><a href=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\" alt=\"&lt;strong&gt;Visual Drag and Drop Editor&lt;/strong&gt; - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\"></a><p><strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\" alt=\"&lt;strong&gt;Full Design System&lt;/strong&gt; - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\"></a><p><strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\" alt=\"&lt;strong&gt;Responsive Design&lt;/strong&gt; Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\"></a><p><strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\" alt=\"&lt;strong&gt;Kits and Templates&lt;/strong&gt; - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\"></a><p><strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\" alt=\"&lt;strong&gt;Nested Elements&lt;/strong&gt; Leverage Elementor Editor&#039;s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\"></a><p><strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\" alt=\"&lt;strong&gt;Motion Effects&lt;/strong&gt; - Add entrance animations and transitions to any element in your website to captivate visitors.\"></a><p><strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.</p></li></ol>\";s:7:\"reviews\";s:16408:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">learning curve is quite steep for new users</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ashlyjohny/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/32acb95946e716d19f317aceafce692d46a21bae38c385716fd508508fdd9825?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/32acb95946e716d19f317aceafce692d46a21bae38c385716fd508508fdd9825?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ashlyjohny/\" class=\"reviewer-name\">ashlyjohny</a> on <span class=\"review-date\">July 8, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The plugin is good and offers useful features, but the learning curve is quite steep for new users. Better documentation or beginner-friendly tutorials would make it much easier to get started.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Great Plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ethanmaller/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/762af23b022fc9a21b3859d2a166a920ab367bff7ae1e98e004c02c570ded5d5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/762af23b022fc9a21b3859d2a166a920ab367bff7ae1e98e004c02c570ded5d5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ethanmaller/\" class=\"reviewer-name\">ethanmaller</a> on <span class=\"review-date\">July 8, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor was key in helping us implement our designs across our pages and blogs. It was an interesting learning curve at first, but everything clicked once we understood the logic.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Where is Elementor heading?</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/updesignme/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/db41171f090c42c53b0d894a6f73ef286594be59f40900df9b4cd988858e7277?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/db41171f090c42c53b0d894a6f73ef286594be59f40900df9b4cd988858e7277?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/updesignme/\" class=\"reviewer-name\">updesignme</a> on <span class=\"review-date\">July 3, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I am very disappointed with Elementor. V4 is utterly unreliable and causing all kinds of erratic behaviour and difficulties. There is limited help resources available, and just don\'t try to contact support, because everything will your fault. I have already moved my hosting away. Seems it\'s time to look for a new page builder too. Not happy Elementor!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Editor is frustrating - Broken</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/ssiddiqi4/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/79f9621d8ac9c50db9dc0c996ce6210158879b5048dffaeb97b793e050fabccf?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/79f9621d8ac9c50db9dc0c996ce6210158879b5048dffaeb97b793e050fabccf?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/ssiddiqi4/\" class=\"reviewer-name\">ssiddiqi4</a> on <span class=\"review-date\">July 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>I rolled-back to version 4.1.2 after wasting a few frustrating days with v 4.1.4. The Editor was horribly slow to load.  I kept troubleshooting plugins and other tweaks.  Nothing helped, after rolling back to v 4.1.2, I got a working Elementor again. With their ambitious new features, Elementor team did a very good job to make v 4.1.4 useless.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Beaucoup trop lourd</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/remyrivalis/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/54440a19403fbdef2d9aef49cb10ebf854172c9671df29e9bb1cff3b1c43f28f?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/54440a19403fbdef2d9aef49cb10ebf854172c9671df29e9bb1cff3b1c43f28f?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/remyrivalis/\" class=\"reviewer-name\">remyrivalis</a> on <span class=\"review-date\">July 1, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Tout dans ce plugin est trop lourd :</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><!-- wp:list-item -->\n<li>Admin trop lourde, vous serez peut-être obligé d\'augmenter la mémoire disponible pour pouvoir éditer des pages.</li>\n<!-- /wp:list-item -->\n\n<!-- wp:list-item -->\n<li>Page en front trop lourde, ralenti le site et globalement mauvais coté SEO.</li>\n<!-- /wp:list-item --></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Vu les possibilité qu\'offre Gutemberg qui s\'étoffe de plus en plus, je ne recommande vraiment pas ce plugin !</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Constantly Breaking Customer Websites</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/retunes/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/d92391c4a983b3081b5732fbdb32184792777ef175a2c153268f44b2f9cc0174?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/d92391c4a983b3081b5732fbdb32184792777ef175a2c153268f44b2f9cc0174?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/retunes/\" class=\"reviewer-name\">retunes</a> on <span class=\"review-date\">June 30, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Best Client Experience</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Not intuitive and hard to manage</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/strokehouse/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/aa5e9e5c93b173f9862f5be628d1cc9fc781b9238d31938a90cd9e69124ac1ac?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/aa5e9e5c93b173f9862f5be628d1cc9fc781b9238d31938a90cd9e69124ac1ac?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/strokehouse/\" class=\"reviewer-name\">strokehouse</a> on <span class=\"review-date\">June 28, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Some tasks such as finding my templates are impossible. Poorly designed from top to bottom. Unfortunately we\'re stuck using this product due to other product relying in this.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">The most horrible update in Elementor&#039;s history.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/hektor777/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/339bd3a59d9dcfa5228dff52f8ad3f88209f49914f3ed56768655046addc79e5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/339bd3a59d9dcfa5228dff52f8ad3f88209f49914f3ed56768655046addc79e5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/hektor777/\" class=\"reviewer-name\">hektor777</a> on <span class=\"review-date\">June 26, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Messy widgets, unfriendly menu bars, lack of customization of widgets, severe slowdown, etc. All these problems have catastrophically reduced Elementor\'s score after the 4.1.4 update. Please go back to version 4.1.2, guys.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">excelente</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/dalbarracin/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/237e6522203622d543d7ef11aa2ec86cc2ccea61a9564890217ceb779db4a40e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/237e6522203622d543d7ef11aa2ec86cc2ccea61a9564890217ceb779db4a40e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/dalbarracin/\" class=\"reviewer-name\"> <small>(dalbarracin)</small></a> on <span class=\"review-date\">June 25, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Lo estoy usando y las prestaciones que tiene son geniales</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">No more updates for me</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/dimaspante/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/eb70e1d20f4b5b3a4ed029e702167f04468693d1128b18fad9aff59c6d269a87?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/eb70e1d20f4b5b3a4ed029e702167f04468693d1128b18fad9aff59c6d269a87?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/dimaspante/\" class=\"reviewer-name\">Dimas Pante <small>(dimaspante)</small></a> on <span class=\"review-date\">June 23, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The latest versions are extremely confusing and makes no sense. Containers are now full-width flexbox which... what, we have to resize one by one? And why in the world they are appended to the end of the document instead of where I added them? Grids don\'t do that - which means bugs ands more bugs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I love Elementor, but the v4 is a huge shot in the dark.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:159:\"The Elementor Website Builder has it all: drag and drop page builder, Atomic Editor, pixel perfect design, global and reusable style systems, mobile r &hellip;\";s:13:\"download_link\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.4.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\";s:7:\"caption\";s:144:\"<strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\";}i:2;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\";s:7:\"caption\";s:185:\"<strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\";}i:3;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\";s:7:\"caption\";s:170:\"<strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\";}i:4;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\";s:7:\"caption\";s:193:\"<strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\";}i:5;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\";s:7:\"caption\";s:197:\"<strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\";}i:6;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\";s:7:\"caption\";s:127:\"<strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.\";}}s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:6:\"editor\";s:6:\"editor\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"landing-page\";s:12:\"landing page\";s:12:\"page-builder\";s:12:\"page builder\";}s:8:\"versions\";a:441:{s:5:\"3.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.0.zip\";s:5:\"3.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.1.zip\";s:6:\"3.0.10\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip\";s:6:\"3.0.11\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.11.zip\";s:6:\"3.0.12\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.12.zip\";s:6:\"3.0.13\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.13.zip\";s:6:\"3.0.14\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.14.zip\";s:6:\"3.0.15\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.15.zip\";s:6:\"3.0.16\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.16.zip\";s:5:\"3.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.2.zip\";s:5:\"3.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.3.zip\";s:5:\"3.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.4.zip\";s:5:\"3.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.5.zip\";s:5:\"3.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.6.zip\";s:5:\"3.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.7.zip\";s:5:\"3.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.zip\";s:7:\"3.0.8.1\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip\";s:5:\"3.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.9.zip\";s:5:\"3.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip\";s:11:\"3.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip\";s:11:\"3.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip\";s:11:\"3.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip\";s:11:\"3.1.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip\";s:10:\"3.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip\";s:10:\"3.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip\";s:10:\"3.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip\";s:5:\"3.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.1.zip\";s:5:\"3.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.2.zip\";s:5:\"3.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.3.zip\";s:5:\"3.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip\";s:6:\"3.10.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.0.zip\";s:11:\"3.10.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip\";s:6:\"3.10.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.1.zip\";s:6:\"3.10.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.2.zip\";s:6:\"3.11.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.0.zip\";s:12:\"3.11.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip\";s:12:\"3.11.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip\";s:12:\"3.11.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip\";s:11:\"3.11.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip\";s:11:\"3.11.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip\";s:11:\"3.11.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip\";s:6:\"3.11.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.1.zip\";s:6:\"3.11.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.2.zip\";s:6:\"3.11.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.3.zip\";s:6:\"3.11.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.4.zip\";s:6:\"3.11.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.5.zip\";s:6:\"3.12.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.0.zip\";s:6:\"3.12.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip\";s:6:\"3.12.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.2.zip\";s:6:\"3.13.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.0.zip\";s:12:\"3.13.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip\";s:12:\"3.13.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip\";s:12:\"3.13.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip\";s:11:\"3.13.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip\";s:11:\"3.13.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip\";s:6:\"3.13.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.1.zip\";s:6:\"3.13.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.2.zip\";s:6:\"3.13.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.3.zip\";s:6:\"3.13.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.4.zip\";s:6:\"3.14.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.0.zip\";s:12:\"3.14.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip\";s:12:\"3.14.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip\";s:12:\"3.14.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip\";s:12:\"3.14.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip\";s:12:\"3.14.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip\";s:6:\"3.14.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.1.zip\";s:6:\"3.15.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.0.zip\";s:6:\"3.15.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.1.zip\";s:6:\"3.15.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.2.zip\";s:6:\"3.15.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.3.zip\";s:6:\"3.16.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.0.zip\";s:12:\"3.16.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip\";s:12:\"3.16.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip\";s:11:\"3.16.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip\";s:11:\"3.16.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip\";s:6:\"3.16.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.1.zip\";s:6:\"3.16.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.2.zip\";s:6:\"3.16.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.3.zip\";s:6:\"3.16.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip\";s:6:\"3.16.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.5.zip\";s:6:\"3.16.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip\";s:6:\"3.17.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.0.zip\";s:11:\"3.17.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip\";s:11:\"3.17.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip\";s:11:\"3.17.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip\";s:6:\"3.17.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.1.zip\";s:6:\"3.17.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.2.zip\";s:6:\"3.17.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.3.zip\";s:6:\"3.18.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.0.zip\";s:12:\"3.18.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip\";s:12:\"3.18.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip\";s:12:\"3.18.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip\";s:12:\"3.18.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip\";s:11:\"3.18.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip\";s:6:\"3.18.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.1.zip\";s:6:\"3.18.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.2.zip\";s:6:\"3.18.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.3.zip\";s:6:\"3.19.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.0.zip\";s:12:\"3.19.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip\";s:12:\"3.19.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip\";s:12:\"3.19.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip\";s:12:\"3.19.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip\";s:12:\"3.19.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip\";s:12:\"3.19.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip\";s:11:\"3.19.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip\";s:11:\"3.19.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip\";s:11:\"3.19.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip\";s:11:\"3.19.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip\";s:11:\"3.19.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip\";s:11:\"3.19.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip\";s:6:\"3.19.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.1.zip\";s:6:\"3.19.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.2.zip\";s:6:\"3.19.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.3.zip\";s:6:\"3.19.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.4.zip\";s:5:\"3.2.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.0.zip\";s:5:\"3.2.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:5:\"3.2.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.2.zip\";s:5:\"3.2.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"3.2.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.4.zip\";s:5:\"3.2.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip\";s:6:\"3.20.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.0.zip\";s:12:\"3.20.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip\";s:12:\"3.20.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip\";s:12:\"3.20.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip\";s:12:\"3.20.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip\";s:11:\"3.20.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip\";s:11:\"3.20.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip\";s:11:\"3.20.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip\";s:11:\"3.20.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip\";s:6:\"3.20.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip\";s:6:\"3.20.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.2.zip\";s:6:\"3.20.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:6:\"3.20.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.4.zip\";s:6:\"3.21.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.0.zip\";s:12:\"3.21.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip\";s:12:\"3.21.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip\";s:12:\"3.21.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip\";s:11:\"3.21.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip\";s:11:\"3.21.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip\";s:11:\"3.21.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip\";s:6:\"3.21.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.1.zip\";s:6:\"3.21.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.2.zip\";s:6:\"3.21.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.3.zip\";s:6:\"3.21.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip\";s:6:\"3.21.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.5.zip\";s:6:\"3.21.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.6.zip\";s:6:\"3.21.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.7.zip\";s:6:\"3.21.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:6:\"3.22.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.0.zip\";s:12:\"3.22.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip\";s:12:\"3.22.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip\";s:12:\"3.22.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip\";s:12:\"3.22.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip\";s:12:\"3.22.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip\";s:12:\"3.22.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip\";s:11:\"3.22.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip\";s:11:\"3.22.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip\";s:11:\"3.22.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip\";s:11:\"3.22.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip\";s:11:\"3.22.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip\";s:11:\"3.22.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip\";s:6:\"3.22.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.1.zip\";s:6:\"3.22.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:6:\"3.22.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:6:\"3.23.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.0.zip\";s:12:\"3.23.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip\";s:12:\"3.23.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip\";s:12:\"3.23.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip\";s:12:\"3.23.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip\";s:12:\"3.23.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip\";s:12:\"3.23.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip\";s:11:\"3.23.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip\";s:11:\"3.23.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip\";s:11:\"3.23.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip\";s:11:\"3.23.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip\";s:11:\"3.23.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip\";s:11:\"3.23.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip\";s:6:\"3.23.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.1.zip\";s:6:\"3.23.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.2.zip\";s:6:\"3.23.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.3.zip\";s:6:\"3.23.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.4.zip\";s:6:\"3.24.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.0.zip\";s:12:\"3.24.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip\";s:12:\"3.24.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip\";s:12:\"3.24.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip\";s:11:\"3.24.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip\";s:11:\"3.24.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip\";s:11:\"3.24.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip\";s:6:\"3.24.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.1.zip\";s:6:\"3.24.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.2.zip\";s:6:\"3.24.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.3.zip\";s:6:\"3.24.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.4.zip\";s:6:\"3.24.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.5.zip\";s:6:\"3.24.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.6.zip\";s:6:\"3.24.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.7.zip\";s:6:\"3.24.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.8.zip\";s:6:\"3.25.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.0.zip\";s:12:\"3.25.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip\";s:12:\"3.25.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip\";s:12:\"3.25.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip\";s:11:\"3.25.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip\";s:11:\"3.25.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip\";s:11:\"3.25.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip\";s:6:\"3.25.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip\";s:7:\"3.25.10\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.10.zip\";s:7:\"3.25.11\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.11.zip\";s:6:\"3.25.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.2.zip\";s:6:\"3.25.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.3.zip\";s:6:\"3.25.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.4.zip\";s:6:\"3.25.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.5.zip\";s:6:\"3.25.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.6.zip\";s:6:\"3.25.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.7.zip\";s:6:\"3.25.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.8.zip\";s:6:\"3.25.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip\";s:6:\"3.26.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.0.zip\";s:12:\"3.26.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip\";s:12:\"3.26.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip\";s:12:\"3.26.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip\";s:12:\"3.26.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip\";s:12:\"3.26.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip\";s:11:\"3.26.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip\";s:11:\"3.26.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip\";s:11:\"3.26.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip\";s:11:\"3.26.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip\";s:11:\"3.26.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip\";s:6:\"3.26.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.1.zip\";s:6:\"3.26.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.2.zip\";s:6:\"3.26.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.3.zip\";s:6:\"3.26.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.4.zip\";s:6:\"3.26.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.5.zip\";s:6:\"3.27.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.0.zip\";s:12:\"3.27.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip\";s:12:\"3.27.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip\";s:11:\"3.27.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip\";s:11:\"3.27.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip\";s:6:\"3.27.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.1.zip\";s:6:\"3.27.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.2.zip\";s:6:\"3.27.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.3.zip\";s:6:\"3.27.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.4.zip\";s:6:\"3.27.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.5.zip\";s:6:\"3.27.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.6.zip\";s:6:\"3.27.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.7.zip\";s:6:\"3.28.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.0.zip\";s:12:\"3.28.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip\";s:12:\"3.28.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip\";s:12:\"3.28.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip\";s:11:\"3.28.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip\";s:11:\"3.28.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip\";s:11:\"3.28.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip\";s:6:\"3.28.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.1.zip\";s:6:\"3.28.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.2.zip\";s:6:\"3.28.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.3.zip\";s:6:\"3.28.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:6:\"3.29.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.0.zip\";s:12:\"3.29.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip\";s:12:\"3.29.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip\";s:12:\"3.29.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip\";s:12:\"3.29.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip\";s:11:\"3.29.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip\";s:11:\"3.29.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip\";s:11:\"3.29.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip\";s:11:\"3.29.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip\";s:6:\"3.29.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.1.zip\";s:6:\"3.29.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:5:\"3.3.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.0.zip\";s:5:\"3.3.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.1.zip\";s:6:\"3.30.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.0.zip\";s:12:\"3.30.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip\";s:12:\"3.30.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip\";s:12:\"3.30.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip\";s:11:\"3.30.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip\";s:11:\"3.30.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip\";s:11:\"3.30.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip\";s:6:\"3.30.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.1.zip\";s:6:\"3.30.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.2.zip\";s:6:\"3.30.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.3.zip\";s:6:\"3.30.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.4.zip\";s:6:\"3.31.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.0.zip\";s:12:\"3.31.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip\";s:12:\"3.31.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip\";s:11:\"3.31.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip\";s:11:\"3.31.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip\";s:6:\"3.31.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.1.zip\";s:6:\"3.31.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.2.zip\";s:6:\"3.31.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.3.zip\";s:6:\"3.31.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.4.zip\";s:6:\"3.31.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.5.zip\";s:6:\"3.32.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.0.zip\";s:12:\"3.32.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta1.zip\";s:12:\"3.32.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta2.zip\";s:12:\"3.32.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta3.zip\";s:11:\"3.32.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev1.zip\";s:11:\"3.32.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev2.zip\";s:11:\"3.32.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev3.zip\";s:6:\"3.32.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.1.zip\";s:6:\"3.32.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.2.zip\";s:6:\"3.32.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.3.zip\";s:6:\"3.32.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.4.zip\";s:6:\"3.32.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.5.zip\";s:6:\"3.33.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.0.zip\";s:12:\"3.33.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta1.zip\";s:12:\"3.33.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta2.zip\";s:12:\"3.33.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta3.zip\";s:12:\"3.33.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta4.zip\";s:11:\"3.33.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev1.zip\";s:11:\"3.33.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev2.zip\";s:11:\"3.33.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev3.zip\";s:11:\"3.33.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev4.zip\";s:6:\"3.33.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.1.zip\";s:6:\"3.33.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.2.zip\";s:6:\"3.33.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.3.zip\";s:6:\"3.33.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.4.zip\";s:6:\"3.33.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.5.zip\";s:6:\"3.33.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.6.zip\";s:6:\"3.34.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.0.zip\";s:12:\"3.34.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta1.zip\";s:12:\"3.34.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta2.zip\";s:12:\"3.34.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta3.zip\";s:11:\"3.34.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev1.zip\";s:11:\"3.34.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev2.zip\";s:6:\"3.34.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.1.zip\";s:6:\"3.34.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.2.zip\";s:6:\"3.34.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.3.zip\";s:6:\"3.34.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.4.zip\";s:6:\"3.35.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.0.zip\";s:12:\"3.35.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta1.zip\";s:12:\"3.35.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta2.zip\";s:12:\"3.35.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta3.zip\";s:12:\"3.35.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta4.zip\";s:11:\"3.35.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev1.zip\";s:11:\"3.35.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev2.zip\";s:11:\"3.35.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev3.zip\";s:11:\"3.35.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev4.zip\";s:6:\"3.35.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.1.zip\";s:6:\"3.35.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.2.zip\";s:6:\"3.35.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.3.zip\";s:6:\"3.35.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.4.zip\";s:6:\"3.35.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip\";s:6:\"3.35.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.6.zip\";s:6:\"3.35.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.7.zip\";s:6:\"3.35.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.8.zip\";s:6:\"3.35.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.9.zip\";s:5:\"3.4.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:10:\"3.4.0-dev7\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip\";s:10:\"3.4.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip\";s:10:\"3.4.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip\";s:5:\"3.4.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip\";s:5:\"3.4.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip\";s:5:\"3.4.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip\";s:5:\"3.4.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip\";s:5:\"3.4.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip\";s:5:\"3.4.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"3.4.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip\";s:5:\"3.4.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip\";s:5:\"3.5.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip\";s:11:\"3.5.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip\";s:11:\"3.5.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip\";s:11:\"3.5.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip\";s:11:\"3.5.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip\";s:11:\"3.5.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip\";s:11:\"3.5.0-beta7\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip\";s:11:\"3.5.0-beta8\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip\";s:10:\"3.5.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip\";s:10:\"3.5.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip\";s:5:\"3.5.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip\";s:5:\"3.5.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip\";s:5:\"3.5.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip\";s:5:\"3.5.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip\";s:5:\"3.5.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip\";s:5:\"3.5.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"3.6.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:11:\"3.6.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip\";s:11:\"3.6.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip\";s:11:\"3.6.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip\";s:11:\"3.6.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip\";s:11:\"3.6.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip\";s:10:\"3.6.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip\";s:11:\"3.6.0-dev10\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip\";s:5:\"3.6.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"3.6.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip\";s:5:\"3.6.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip\";s:5:\"3.6.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"3.6.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"3.6.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip\";s:5:\"3.6.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"3.6.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip\";s:5:\"3.7.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip\";s:11:\"3.7.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip\";s:11:\"3.7.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip\";s:11:\"3.7.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip\";s:11:\"3.7.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip\";s:10:\"3.7.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip\";s:5:\"3.7.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip\";s:5:\"3.7.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip\";s:5:\"3.7.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip\";s:5:\"3.7.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"3.7.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip\";s:5:\"3.7.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip\";s:5:\"3.7.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip\";s:5:\"3.7.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip\";s:5:\"3.8.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip\";s:11:\"3.8.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip\";s:11:\"3.8.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip\";s:11:\"3.8.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip\";s:5:\"3.8.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip\";s:5:\"3.9.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip\";s:5:\"3.9.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip\";s:5:\"3.9.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:5:\"4.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.0.zip\";s:11:\"4.0.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta1.zip\";s:11:\"4.0.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta2.zip\";s:11:\"4.0.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta3.zip\";s:11:\"4.0.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta4.zip\";s:11:\"4.0.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-beta5.zip\";s:10:\"4.0.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev1.zip\";s:10:\"4.0.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev2.zip\";s:10:\"4.0.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev3.zip\";s:10:\"4.0.0-dev4\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev4.zip\";s:10:\"4.0.0-dev5\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.0.0-dev5.zip\";s:5:\"4.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.1.zip\";s:5:\"4.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.2.zip\";s:5:\"4.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.3.zip\";s:5:\"4.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.4.zip\";s:5:\"4.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.5.zip\";s:5:\"4.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.6.zip\";s:5:\"4.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.7.zip\";s:5:\"4.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.8.zip\";s:5:\"4.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.0.9.zip\";s:5:\"4.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.0.zip\";s:11:\"4.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-beta1.zip\";s:11:\"4.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-beta2.zip\";s:11:\"4.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-beta3.zip\";s:10:\"4.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-dev1.zip\";s:10:\"4.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-dev2.zip\";s:10:\"4.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.4.1.0-dev3.zip\";s:5:\"4.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.1.zip\";s:5:\"4.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.2.zip\";s:5:\"4.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.3.zip\";s:5:\"4.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.4.zip\";s:11:\"4.2.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.4.2.0-beta1.zip\";s:5:\"trunk\";s:52:\"https://downloads.wordpress.org/plugin/elementor.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:94:\"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";s:4:\"high\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:63:\"Elementor Website Builder &#8211; more than just a page builder\";}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(183, 'elementor_onboarded', '1', 'auto'),
(184, 'elementor_active_kit', '7', 'auto'),
(185, 'elementor_font_display', 'swap', 'auto'),
(201, '_elementor_installed_time', '1783172934', 'auto'),
(202, 'elementor_connect_site_key', 'f20ff6cd7e6cb3e28b73ba98104a264a', 'auto'),
(188, 'recently_activated', 'a:0:{}', 'off'),
(190, 'elementor_landing_pages_activation', '0', 'auto'),
(191, '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'),
(192, 'elementor_version', '4.1.4', 'auto'),
(193, 'elementor_install_history', 'a:1:{s:5:\"4.1.4\";i:1783172933;}', 'auto'),
(194, '_elementor_10th_bday_data', 'a:2:{s:7:\"timeout\";i:1783176533;s:5:\"value\";s:483:\"{\"header\":\"Celebrate 10 years of Elementor\",\"content\":\"Unlock more capabilities for less with limited-time savings on selected plans. Offer ends June 17.\",\"cta\":{\"label\":\"Get discounts\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-editor-10bd-easter-egg\\/\"},\"time_frame\":{\"start\":\"6\\/15\\/2026T10:00:00Z\",\"end\":\"6\\/17\\/2026T03:59:59Z\"},\"hero\":\"https:\\/\\/assets.elementor.com\\/10th-bday\\/v1\\/images\\/hero.png\",\"lottie\":\"https:\\/\\/assets.elementor.com\\/10th-bday\\/v1\\/lotties\\/intro.json\"}\";}', 'off'),
(195, '_elementor_pro_free_trial_data', 'a:2:{s:7:\"timeout\";i:1783176533;s:5:\"value\";s:575:\"[{\"status\":\"inactive\",\"heading\":\"You\\u2019ve come this far. Why stop here?\",\"subheading\":\"Elementor Pro Free Trial\",\"introduction\":\"Take your site beyond the basics with a free 7-day Elementor Pro trial with no strings attached:\",\"listItems\":[\"100+ widgets\",\"Theme Builder\",\"Advanced design controls\",\"Custom CSS for pixel-perfect sites - and more\"],\"ctaText\":\"Unlock my free trial\",\"ctaUrl\":\"https:\\/\\/go.elementor.com\\/go-pro-free-trial-popup\\/\",\"secondaryAction\":\"Not now\",\"image\":\"https:\\/\\/assets.elementor.com\\/pro-free-trial-popup\\/v1\\/images\\/free_trial_banner.png\"}]\";}', 'off'),
(196, 'elementor_events_db_version', '1.0.0', 'off'),
(125, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1783172908;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'off'),
(126, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"8c6a8a3b333c52a38ee27a4832611d42\";s:6:\"blocks\";a:7:{s:32:\"0368537a03d4b05ed11f802c802c5153\";s:0:\"\";s:32:\"500888137eafa12a508de2c588d9ffdd\";s:46:\":root :where(.wp-block-icon svg){width: 24px;}\";s:32:\"a6036e6eb2ad2df7ed8860b807868647\";s:0:\"\";s:32:\"3b46efc0a10c1dae38f584ad199c3544\";s:0:\"\";s:32:\"ab4df16c9e454bfed8a404309545590d\";s:0:\"\";s:32:\"68ec5cad52d993402775a7503ba9efb7\";s:0:\"\";s:32:\"b8b4aa19e69b9b2de0f5c27097467bd6\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(229, 'edd_sl_0db1b5f4838f5bc5af637174ef14407d', 'a:2:{s:7:\"timeout\";i:1783716311;s:5:\"value\";s:2281:\"{\"new_version\":\"2.13.5\",\"stable_version\":\"2.13.5\",\"name\":\"PowerPack Elements\",\"slug\":\"powerpack-elements\",\"url\":\"https:\\/\\/powerpackelements.com\\/downloads\\/powerpack-elements\\/?changelog=1\",\"last_updated\":\"2026-07-02 06:39:35\",\"homepage\":\"https:\\/\\/powerpackelements.com\",\"package\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc4Mzg5ODExMTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjRmMzA4YzIwY2Y2MmFhNGM4ZmJkODA2NjQ3MmRjNzdmOmh0dHBzQC8vbXJhcmlmLm1lL2V2ZXJ3ZWxsOjA=\",\"download_link\":\"https:\\/\\/powerpackelements.com\\/edd-sl\\/package_download\\/MTc4Mzg5ODExMTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjRmMzA4YzIwY2Y2MmFhNGM4ZmJkODA2NjQ3MmRjNzdmOmh0dHBzQC8vbXJhcmlmLm1lL2V2ZXJ3ZWxsOjA=\",\"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'),
(230, 'elementor_one_client_id', 'e3487191-d9c8-4143-93fa-a3d32e227196', 'off'),
(231, 'elementor_one_client_secret', 'MUKvejBJeHjY4Rwvarq3SP7b6y', 'off'),
(232, 'elementor_one_home_url', 'aHR0cHM6Ly9tcmFyaWYubWUvZXZlcndlbGw=', 'off'),
(234, 'elementor_allow_tracking', 'yes', 'auto'),
(235, 'elementor_allow_tracking_last_update', '1783507121', 'auto'),
(236, 'elementor_tracker_last_send', '1783173330', 'auto'),
(237, '_transient_timeout_elementor_rollback_versions_4.1.4', '1783778131', 'off'),
(238, '_transient_elementor_rollback_versions_4.1.4', 'a:30:{i:0;s:5:\"4.1.3\";i:1;s:5:\"4.1.2\";i:2;s:5:\"4.1.1\";i:3;s:5:\"4.1.0\";i:4;s:5:\"4.0.9\";i:5;s:5:\"4.0.8\";i:6;s:5:\"4.0.7\";i:7;s:5:\"4.0.6\";i:8;s:5:\"4.0.5\";i:9;s:5:\"4.0.4\";i:10;s:5:\"4.0.3\";i:11;s:5:\"4.0.2\";i:12;s:5:\"4.0.1\";i:13;s:5:\"4.0.0\";i:14;s:6:\"3.35.9\";i:15;s:6:\"3.35.8\";i:16;s:6:\"3.35.7\";i:17;s:6:\"3.35.6\";i:18;s:6:\"3.35.5\";i:19;s:6:\"3.35.4\";i:20;s:6:\"3.35.3\";i:21;s:6:\"3.35.2\";i:22;s:6:\"3.35.1\";i:23;s:6:\"3.35.0\";i:24;s:6:\"3.34.4\";i:25;s:6:\"3.34.3\";i:26;s:6:\"3.34.2\";i:27;s:6:\"3.34.1\";i:28;s:6:\"3.34.0\";i:29;s:6:\"3.33.6\";}', 'off'),
(239, '_transient_timeout_elementor_pro_rollback_versions_4.0.2', '1783778131', 'off'),
(240, '_transient_elementor_pro_rollback_versions_4.0.2', 'a:30:{i:0;s:5:\"4.1.2\";i:1;s:5:\"4.1.1\";i:2;s:5:\"4.1.0\";i:3;s:5:\"4.0.4\";i:4;s:5:\"4.0.3\";i:5;s:5:\"4.0.2\";i:6;s:5:\"4.0.1\";i:7;s:5:\"4.0.0\";i:8;s:6:\"3.35.1\";i:9;s:6:\"3.35.0\";i:10;s:6:\"3.34.4\";i:11;s:6:\"3.34.3\";i:12;s:6:\"3.34.2\";i:13;s:6:\"3.34.1\";i:14;s:6:\"3.34.0\";i:15;s:6:\"3.33.2\";i:16;s:6:\"3.33.1\";i:17;s:6:\"3.33.0\";i:18;s:6:\"3.32.3\";i:19;s:6:\"3.32.2\";i:20;s:6:\"3.32.1\";i:21;s:6:\"3.32.0\";i:22;s:6:\"3.31.3\";i:23;s:6:\"3.31.2\";i:24;s:6:\"3.31.1\";i:25;s:6:\"3.31.0\";i:26;s:6:\"3.30.1\";i:27;s:6:\"3.30.0\";i:28;s:6:\"3.29.2\";i:29;s:6:\"3.29.1\";}', 'off'),
(241, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(242, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1783589997;s:5:\"value\";s:2912:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"pro-interactions\",\"atomic-components\",\"atomic-loop\",\"atomic-form\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(243, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1783546797;s:5:\"value\";s:2912:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"pro-interactions\",\"atomic-components\",\"atomic-loop\",\"atomic-form\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(128, 'recovery_keys', 'a:0:{}', 'off'),
(2307, '_site_transient_timeout_theme_roots', '1783707312', 'off'),
(2308, '_site_transient_theme_roots', 'a:3:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";}', 'off'),
(134, '_site_transient_timeout_browser_16fee37559dbd42b448204446d02089f', '1783777446', 'off'),
(135, '_site_transient_browser_16fee37559dbd42b448204446d02089f', 'a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"149.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}', 'off'),
(136, '_site_transient_timeout_php_check_2cd6b574a37d822556e9c586248b843b', '1783777446', 'off'),
(137, '_site_transient_php_check_2cd6b574a37d822556e9c586248b843b', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(141, 'finished_updating_comment_type', '1', 'auto'),
(2143, '_transient_is_multi_author', '0', 'on'),
(152, 'can_compress_scripts', '1', 'on'),
(165, 'current_theme', 'Astra Child', 'auto'),
(166, 'theme_mods_astra-child', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:11:\"mobile_menu\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:53;}', 'on'),
(167, 'theme_switched', '', 'auto'),
(199, 'elementor_atomic_widgets_db_version', '1', 'auto'),
(200, 'elementor_global_classes_db_version', '3', 'auto'),
(203, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:43:\"Introducing Angie: Agentic AI for WordPress\";s:7:\"excerpt\";s:365:\"Meet Angie, agentic AI purpose-built for WordPress. Angie understands your site, connects to your tools, and takes real actions on your behalf. Its first capability, Angie Code, lets you describe any WordPress feature you can imagine and have it built for you in minutes. Production-ready, fully integrated with your site, and safe to test before it ever goes live.\";s:7:\"created\";i:1774270910;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:142:\"https://elementor.com/blog/introducing-angie-agentic-ai-for-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:59:\"The atomic foundation of version 4 is ready for real sites!\";s:7:\"excerpt\";s:296:\"The alpha phase is complete. Version 4 is now in beta, and the atomic foundation is ready to be used on real sites! This is the final step before the official release of version 4.0, activating the new features automatically on new sites, and becoming the default editing experience in Elementor.\";s:7:\"created\";i:1770651621;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:113:\"https://elementor.com/blog/editor-4-beta/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(267, 'elementor_log', 'a:11:{s:32:\"33f32a68633a0ba58da6ec0b32942550\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-05 05:07:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-07-05 05:07:12\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"70f2e62401e4ef43f6bb87d26bfff8fc\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-05 05:09:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-07-05 05:09:13\";}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:\"b074082466dc83cbe684f7de3b6210ed\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-05 05:09:13\";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-07-05 05:09:13\";}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:\"2f9046fa492626bfbcbcc360f96d4f27\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-05 05:09:13\";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-07-05 05:09:13\";}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:\"337a4ec36e5793871814902efa12cc4c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-07-05 05:09:13\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-07-05 05:09:13\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:5:\"4.0.2\";s:2:\"to\";s:5:\"4.1.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fa16de921296cabab515dcc967a46cd5\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-05 06:02:08\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:31:\"Element type already registered\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:111;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-07-07 07:39:03\";i:1;s:19:\"2026-07-07 07:43:27\";i:2;s:19:\"2026-07-07 07:47:53\";i:3;s:19:\"2026-07-07 07:50:04\";i:4;s:19:\"2026-07-07 07:59:07\";i:5;s:19:\"2026-07-07 07:59:43\";i:6;s:19:\"2026-07-07 08:06:43\";i:7;s:19:\"2026-07-07 08:10:00\";i:8;s:19:\"2026-07-07 08:10:57\";i:9;s:19:\"2026-07-07 08:12:28\";i:10;s:19:\"2026-07-07 08:13:35\";i:11;s:19:\"2026-07-08 09:49:49\";i:12;s:19:\"2026-07-08 10:06:39\";i:13;s:19:\"2026-07-08 10:29:56\";i:14;s:19:\"2026-07-08 10:32:40\";i:15;s:19:\"2026-07-08 10:44:56\";i:16;s:19:\"2026-07-08 10:48:57\";i:17;s:19:\"2026-07-08 11:14:22\";i:18;s:19:\"2026-07-08 11:26:36\";i:19;s:19:\"2026-07-08 11:30:37\";i:20;s:19:\"2026-07-08 11:43:43\";i:21;s:19:\"2026-07-08 11:44:41\";i:22;s:19:\"2026-07-08 11:45:29\";i:23;s:19:\"2026-07-08 11:47:41\";i:24;s:19:\"2026-07-08 11:48:13\";i:25;s:19:\"2026-07-08 11:50:14\";i:26;s:19:\"2026-07-08 11:52:39\";i:27;s:19:\"2026-07-08 11:52:47\";i:28;s:19:\"2026-07-08 11:58:49\";i:29;s:19:\"2026-07-08 12:01:05\";i:30;s:19:\"2026-07-08 12:03:14\";i:31;s:19:\"2026-07-08 12:03:44\";i:32;s:19:\"2026-07-08 12:04:20\";i:33;s:19:\"2026-07-08 13:45:47\";i:34;s:19:\"2026-07-08 20:28:00\";i:35;s:19:\"2026-07-08 20:28:03\";i:36;s:19:\"2026-07-08 20:29:20\";i:37;s:19:\"2026-07-08 20:39:54\";i:38;s:19:\"2026-07-08 20:40:01\";i:39;s:19:\"2026-07-08 20:40:12\";i:40;s:19:\"2026-07-08 21:12:43\";i:41;s:19:\"2026-07-08 21:12:48\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783231328\";s:7:\"message\";s:31:\"Element type already registered\";s:3:\"url\";s:89:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"930509\";}s:7:\"\0*\0file\";s:89:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"930509\";}s:32:\"8c714fac5f337ed34edbecea3ee69a2d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-05 06:09:14\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:107:\"Failed to execute &#039;querySelector&#039; on &#039;Document&#039;: &#039;#&#039; is not a valid selector.\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:63;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-07-05 10:02:26\";i:1;s:19:\"2026-07-05 10:12:17\";i:2;s:19:\"2026-07-05 10:12:17\";i:3;s:19:\"2026-07-05 10:15:13\";i:4;s:19:\"2026-07-05 10:15:13\";i:5;s:19:\"2026-07-05 10:15:13\";i:6;s:19:\"2026-07-05 10:15:44\";i:7;s:19:\"2026-07-05 10:15:44\";i:8;s:19:\"2026-07-05 10:15:44\";i:9;s:19:\"2026-07-05 10:27:36\";i:10;s:19:\"2026-07-05 10:27:36\";i:11;s:19:\"2026-07-05 10:27:36\";i:12;s:19:\"2026-07-05 10:32:11\";i:13;s:19:\"2026-07-05 10:32:11\";i:14;s:19:\"2026-07-05 10:32:11\";i:15;s:19:\"2026-07-05 10:32:19\";i:16;s:19:\"2026-07-05 10:32:19\";i:17;s:19:\"2026-07-05 10:32:19\";i:18;s:19:\"2026-07-05 10:35:08\";i:19;s:19:\"2026-07-05 10:35:08\";i:20;s:19:\"2026-07-05 10:35:08\";i:21;s:19:\"2026-07-05 10:38:36\";i:22;s:19:\"2026-07-05 10:38:36\";i:23;s:19:\"2026-07-05 10:38:36\";i:24;s:19:\"2026-07-05 10:38:43\";i:25;s:19:\"2026-07-05 10:38:43\";i:26;s:19:\"2026-07-05 10:38:43\";i:27;s:19:\"2026-07-05 10:38:49\";i:28;s:19:\"2026-07-05 10:38:49\";i:29;s:19:\"2026-07-05 10:38:49\";i:30;s:19:\"2026-07-05 11:25:55\";i:31;s:19:\"2026-07-05 11:25:55\";i:32;s:19:\"2026-07-05 11:37:03\";i:33;s:19:\"2026-07-05 11:37:03\";i:34;s:19:\"2026-07-05 11:37:03\";i:35;s:19:\"2026-07-05 11:51:23\";i:36;s:19:\"2026-07-05 11:51:23\";i:37;s:19:\"2026-07-05 11:51:23\";i:38;s:19:\"2026-07-05 13:18:38\";i:39;s:19:\"2026-07-05 13:18:38\";i:40;s:19:\"2026-07-05 13:18:44\";i:41;s:19:\"2026-07-05 13:18:44\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783231754\";s:7:\"message\";s:77:\"Failed to execute \'querySelector\' on \'Document\': \'#\' is not a valid selector.\";s:3:\"url\";s:89:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"985339\";}s:7:\"\0*\0file\";s:89:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"985339\";}s:32:\"694e812599f043426d682503ba65737d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-05 06:10:12\";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:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2026-07-05 06:10:12\";i:1;s:19:\"2026-07-05 07:11:39\";i:2;s:19:\"2026-07-06 11:22:08\";i:3;s:19:\"2026-07-08 10:38:41\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783231812\";s:7:\"message\";s:30:\"r.startsWith is not a function\";s:3:\"url\";s:88:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"42329\";}s:7:\"\0*\0file\";s:88:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/admin.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"42329\";}s:32:\"e53e08c5f457b52eb49e353e443b81c0\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-05 07:34:18\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:35:\"this.ui.input.val is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2026-07-05 07:34:18\";i:1;s:19:\"2026-07-05 09:43:35\";i:2;s:19:\"2026-07-06 10:24:07\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783236858\";s:7:\"message\";s:35:\"this.ui.input.val is not a function\";s:3:\"url\";s:89:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"248754\";}s:7:\"\0*\0file\";s:89:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"248754\";}s:32:\"1c96f60ee10c4ea96ce0932494268b8f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-07-05 10:04:41\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:23:\"l.get is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:78;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-07-05 10:06:38\";i:1;s:19:\"2026-07-05 10:06:38\";i:2;s:19:\"2026-07-05 10:06:39\";i:3;s:19:\"2026-07-05 10:06:42\";i:4;s:19:\"2026-07-05 10:06:44\";i:5;s:19:\"2026-07-05 10:06:44\";i:6;s:19:\"2026-07-05 10:06:44\";i:7;s:19:\"2026-07-05 10:06:45\";i:8;s:19:\"2026-07-05 10:06:45\";i:9;s:19:\"2026-07-05 10:06:45\";i:10;s:19:\"2026-07-05 10:06:46\";i:11;s:19:\"2026-07-05 10:06:46\";i:12;s:19:\"2026-07-05 10:06:50\";i:13;s:19:\"2026-07-05 10:06:54\";i:14;s:19:\"2026-07-05 10:06:56\";i:15;s:19:\"2026-07-05 10:06:58\";i:16;s:19:\"2026-07-05 10:07:04\";i:17;s:19:\"2026-07-05 10:07:06\";i:18;s:19:\"2026-07-05 10:07:07\";i:19;s:19:\"2026-07-05 10:07:15\";i:20;s:19:\"2026-07-05 10:07:21\";i:21;s:19:\"2026-07-05 10:07:23\";i:22;s:19:\"2026-07-05 10:07:38\";i:23;s:19:\"2026-07-05 10:07:42\";i:24;s:19:\"2026-07-05 10:08:39\";i:25;s:19:\"2026-07-05 10:08:39\";i:26;s:19:\"2026-07-05 10:08:39\";i:27;s:19:\"2026-07-05 10:08:39\";i:28;s:19:\"2026-07-05 10:08:39\";i:29;s:19:\"2026-07-05 10:08:39\";i:30;s:19:\"2026-07-05 10:08:39\";i:31;s:19:\"2026-07-05 10:08:39\";i:32;s:19:\"2026-07-05 10:08:39\";i:33;s:19:\"2026-07-05 10:08:39\";i:34;s:19:\"2026-07-05 10:08:39\";i:35;s:19:\"2026-07-05 10:08:40\";i:36;s:19:\"2026-07-05 10:08:40\";i:37;s:19:\"2026-07-05 10:08:40\";i:38;s:19:\"2026-07-05 10:08:40\";i:39;s:19:\"2026-07-05 10:08:40\";i:40;s:19:\"2026-07-05 10:08:40\";i:41;s:19:\"2026-07-05 10:08:40\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1783245881\";s:7:\"message\";s:23:\"l.get is not a function\";s:3:\"url\";s:97:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=4.1.4\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"12039\";}s:7:\"\0*\0file\";s:97:\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=4.1.4\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"12039\";}s:32:\"add341293aaf18712b5a4a4e36376f6d\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-07-05 11:24:02\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:36:\"Function utf8_decode() is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:38;s:14:\"\0*\0times_dates\";a:38:{i:0;s:19:\"2026-07-05 11:24:02\";i:1;s:19:\"2026-07-05 11:24:02\";i:2;s:19:\"2026-07-05 11:24:03\";i:3;s:19:\"2026-07-05 11:24:03\";i:4;s:19:\"2026-07-05 11:31:36\";i:5;s:19:\"2026-07-05 11:31:36\";i:6;s:19:\"2026-07-05 12:18:08\";i:7;s:19:\"2026-07-05 12:18:08\";i:8;s:19:\"2026-07-05 12:18:08\";i:9;s:19:\"2026-07-05 12:53:08\";i:10;s:19:\"2026-07-05 12:53:08\";i:11;s:19:\"2026-07-05 12:53:50\";i:12;s:19:\"2026-07-05 12:53:51\";i:13;s:19:\"2026-07-05 12:55:43\";i:14;s:19:\"2026-07-05 12:55:43\";i:15;s:19:\"2026-07-05 12:56:27\";i:16;s:19:\"2026-07-05 12:56:27\";i:17;s:19:\"2026-07-05 12:59:43\";i:18;s:19:\"2026-07-05 13:00:25\";i:19;s:19:\"2026-07-05 13:00:25\";i:20;s:19:\"2026-07-06 10:46:27\";i:21;s:19:\"2026-07-06 10:46:28\";i:22;s:19:\"2026-07-06 10:46:29\";i:23;s:19:\"2026-07-06 10:46:29\";i:24;s:19:\"2026-07-06 10:46:29\";i:25;s:19:\"2026-07-06 11:28:22\";i:26;s:19:\"2026-07-06 11:28:22\";i:27;s:19:\"2026-07-06 11:59:26\";i:28;s:19:\"2026-07-06 11:59:27\";i:29;s:19:\"2026-07-08 11:14:28\";i:30;s:19:\"2026-07-08 11:14:29\";i:31;s:19:\"2026-07-08 11:14:29\";i:32;s:19:\"2026-07-08 11:14:29\";i:33;s:19:\"2026-07-08 12:02:45\";i:34;s:19:\"2026-07-08 12:02:45\";i:35;s:19:\"2026-07-08 12:02:48\";i:36;s:19:\"2026-07-08 12:02:48\";i:37;s:19:\"2026-07-08 12:02:49\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:36:\"Function utf8_decode() is deprecated\";s:4:\"file\";s:99:\"/home/mrarqpph/public_html/everwell/wp-content/plugins/elementor-pro/modules/screenshots/module.php\";s:4:\"line\";i:33;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:99:\"/home/mrarqpph/public_html/everwell/wp-content/plugins/elementor-pro/modules/screenshots/module.php\";s:7:\"\0*\0line\";i:33;}}', 'off'),
(215, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1783705511;s:16:\"get_license_data\";i:1783503596;}', 'auto'),
(210, 'elementor_pro_version', '4.1.2', 'auto'),
(211, 'elementor_pro_install_history', 'a:2:{s:5:\"4.0.2\";i:1783172983;s:5:\"4.1.2\";i:1783228153;}', 'auto'),
(212, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(213, '_elementor_pro_installed_time', '1783172984', 'auto'),
(214, 'elementor_submissions_db_version', '5', 'auto'),
(272, 'elementor_pro_theme_builder_conditions', 'a:2:{s:6:\"footer\";a:1:{i:377;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:66;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(2153, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1783705512;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{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.6\";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.6.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/backup-backup/assets/icon-128x128.png?rev=2995566\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/backup-backup/assets/banner-772x250.png?rev=2429136\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.1.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.8\";}s:41:\"powerpack-elements/powerpack-elements.php\";O:8:\"stdClass\":17:{s:11:\"new_version\";s:6:\"2.13.5\";s:14:\"stable_version\";s:6:\"2.13.5\";s:4:\"name\";s:18:\"PowerPack Elements\";s:4:\"slug\";s:18:\"powerpack-elements\";s:3:\"url\";s:71:\"https://powerpackelements.com/downloads/powerpack-elements/?changelog=1\";s:12:\"last_updated\";s:19:\"2026-07-02 06:39:35\";s:8:\"homepage\";s:29:\"https://powerpackelements.com\";s:7:\"package\";s:202:\"https://powerpackelements.com/edd-sl/package_download/MTc4Mzg5ODExMTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjRmMzA4YzIwY2Y2MmFhNGM4ZmJkODA2NjQ3MmRjNzdmOmh0dHBzQC8vbXJhcmlmLm1lL2V2ZXJ3ZWxsOjA=\";s:13:\"download_link\";s:202:\"https://powerpackelements.com/edd-sl/package_download/MTc4Mzg5ODExMTo4MjAzNTdiMjdiZWRiOWJmMzFjZjQ3Yzk4ZjVhMDRiMToxMDU1OjRmMzA4YzIwY2Y2MmFhNGM4ZmJkODA2NjQ3MmRjNzdmOmh0dHBzQC8vbXJhcmlmLm1lL2V2ZXJ3ZWxsOjA=\";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:95:\"https://mrarif.me/everwell/wp-content/plugins/powerpack-elements/assets/images/icon-128x128.png\";s:2:\"2x\";s:95:\"https://mrarif.me/everwell/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";s:7:\"default\";s:95:\"https://mrarif.me/everwell/wp-content/plugins/powerpack-elements/assets/images/icon-256x256.png\";}s:12:\"contributors\";O:8:\"stdClass\":5:{s:16:\"ideaboxcreations\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:16:\"ideaboxcreations\";s:7:\"profile\";s:41:\"//profiles.wordpress.org/ideaboxcreations\";s:6:\"avatar\";s:61:\"https://wordpress.org/grav-redirect.php?user=ideaboxcreations\";}s:10:\"bloompixel\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"bloompixel\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/bloompixel\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=bloompixel\";}s:10:\"simrandeep\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:10:\"simrandeep\";s:7:\"profile\";s:35:\"//profiles.wordpress.org/simrandeep\";s:6:\"avatar\";s:55:\"https://wordpress.org/grav-redirect.php?user=simrandeep\";}s:7:\"ibachal\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:7:\"ibachal\";s:7:\"profile\";s:32:\"//profiles.wordpress.org/ibachal\";s:6:\"avatar\";s:52:\"https://wordpress.org/grav-redirect.php?user=ibachal\";}s:13:\"puneetsahalot\";O:8:\"stdClass\":3:{s:12:\"display_name\";s:13:\"puneetsahalot\";s:7:\"profile\";s:38:\"//profiles.wordpress.org/puneetsahalot\";s:6:\"avatar\";s:58:\"https://wordpress.org/grav-redirect.php?user=puneetsahalot\";}}s:6:\"tested\";s:5:\"6.7.1\";s:9:\"changelog\";a:1:{i:0;s:131:\"<p>Visit <a href=\"https://powerpackelements.com/change-logs/\" target=\"_blank\" rel=\"noopener\">changelogs page</a> for details.</p>\n\";}s:6:\"plugin\";s:41:\"powerpack-elements/powerpack-elements.php\";s:2:\"id\";s:41:\"powerpack-elements/powerpack-elements.php\";}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":16:{s:14:\"stable_version\";s:5:\"4.1.2\";s:12:\"last_updated\";s:19:\"2026-06-23 14:12:14\";s:11:\"new_version\";s:5:\"4.1.2\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:3:\"7.0\";s:18:\"elementor_requires\";s:4:\"3.34\";s:7:\"package\";s:377:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXZlcndlbGwiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzNzA1NTExLCJleHAiOjE3ODM3OTE5MTF9.HGWLuc6EpakvQlMi1IA_5s5owsm7_4r02Ocg8o-6xbs/package_download\";s:13:\"download_link\";s:377:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXZlcndlbGwiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzNzA1NTExLCJleHAiOjE3ODM3OTE5MTF9.HGWLuc6EpakvQlMi1IA_5s5owsm7_4r02Ocg8o-6xbs/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:61:\"https://assets.elementor.com/miscellaneous/v1/images/icon.svg\";}s:12:\"requires_php\";s:3:\"7.4\";s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:7:\"checked\";a:4:{s:31:\"backup-backup/backup-backup.php\";s:5:\"2.1.6\";s:23:\"elementor/elementor.php\";s:5:\"4.1.4\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"4.1.2\";s:41:\"powerpack-elements/powerpack-elements.php\";s:6:\"2.13.5\";}}', 'off'),
(2154, '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'),
(2155, 'bmi_initial_installation_version', '2.1.6', 'auto'),
(2168, 'bmip_to_be_uploaded', 'a:3:{s:14:\"current_upload\";a:0:{}s:5:\"queue\";a:0:{}s:6:\"failed\";a:0:{}}', 'auto'),
(2157, 'analyst_cache', 's:6:\"a:0:{}\";', 'auto'),
(2173, '_transient_bmi_latest_size_wordpress', '73579859', 'on'),
(2158, '_irb_h_bn_review', 'a:2:{s:5:\"users\";a:0:{}s:13:\"backup-backup\";i:1783545313;}', 'auto'),
(2159, '_new_bb_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";i:0;s:11:\"using_since\";i:1783545313;}', 'auto'),
(2160, 'bmi_gdrive_banner_dismissed', '1', 'auto'),
(2161, '_bmi_backup_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";N;s:15:\"first_loaded_at\";i:1783545313;}', 'auto'),
(2162, 'bmi_sk_keepalive', 'IuNDA8x59Tx5wIyY4yYUQIi3JaZ7p3xS', 'auto'),
(2165, 'bmi_cron_new_domain_done', '1', 'auto'),
(2166, 'bmi_cron_last_ping_time', '1783545326', 'auto'),
(2167, 'BMI::STORAGE::LOCAL::PATH', '/home/mrarqpph/public_html/everwell/wp-content/backup-migration-k0hHp8BveW', 'auto'),
(2169, '_transient_bmi_latest_size_plugins', '113441934', 'on'),
(2170, '_transient_bmi_latest_size_uploads', '12175448', 'on'),
(2171, '_transient_bmi_latest_size_themes', '31389751', 'on'),
(2172, '_transient_bmi_latest_size_contents_others', '112', 'on'),
(2174, '_transient_bmi_latest_size_database', '39208132', 'on'),
(2175, 'bmi_required_space', '219810053', 'auto'),
(2270, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"arifwebsols@gmail.com\";s:7:\"version\";s:5:\"7.0.1\";s:9:\"timestamp\";i:1783642070;}', 'off'),
(2264, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-7.0.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-7.0.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-7.0.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-7.0.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"7.0.1\";s:7:\"version\";s:5:\"7.0.1\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1783705510;s:15:\"version_checked\";s:5:\"7.0.1\";s:12:\"translations\";a:0:{}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2306, 'elementor_pro_remote_info_api_data_4.1.2', 'a:2:{s:7:\"timeout\";i:1783748712;s:5:\"value\";s:255218:\"{\"stable_version\":\"4.1.2\",\"last_updated\":\"2026-06-23 14:12:14\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:240519:\\\"<h1>Elementor Pro - by Elementor.com<\\/h1>\\n<h4>4.1.2 - 2026-06-23<\\/h4>\\n<ul>\\n<li>Fix: Email action is not configured correctly when submitting Atomic Forms - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.1.1 - 2026-06-08<\\/h4>\\n<ul>\\n<li>Fix: Live Results item count does not apply correctly on Tablet and Mobile in Search widget<\\/li>\\n<li>Fix: Default animation appears for logged-out users when using an ACF URL dynamic tag in Lottie widget<\\/li>\\n<li>Fix: &quot;Something went wrong&quot; error appears when using Taxonomy Filter with a Loop Grid based on Current Query<\\/li>\\n<\\/ul>\\n<h4>4.1.0 - 2026-05-26<\\/h4>\\n<ul>\\n<li>Tweak: Added Radio Button element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Select element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Date Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Time Picker element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added File Upload element to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Webhook URL support to Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Improved the default To and From field settings in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Updated the Connected Input ID control to a Select control in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added the Atomic Elements section when editing Loop Grid templates - Atomic Editor<\\/li>\\n<li>Tweak: Added support for dynamic field mentions in email content in Atomic Form - Atomic Editor<\\/li>\\n<li>Tweak: Added Start and End grid lines for the While Scrolling effect in Interactions - Atomic Editor<\\/li>\\n<li>Tweak: Updated the minimum required WordPress version to 6.8<\\/li>\\n<li>Fix: Custom styles are lost for Atomic elements used in loops - Atomic Editor<\\/li>\\n<li>Fix: Action Log and Page Title are not recorded in Atomic Form submissions - Atomic Editor<\\/li>\\n<li>Fix: Inline editing does not work for Buttons inside Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Atomic Form cannot be dragged into containers or child containers - Atomic Editor<\\/li>\\n<li>Fix: Pasting content from another site may cause a fatal error with Loop Item Templates<\\/li>\\n<\\/ul>\\n<h4>4.0.4 - 2026-04-28<\\/h4>\\n<ul>\\n<li>Fix: Flexbox and Div Block do not work with display conditions - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.3 - 2026-04-20<\\/h4>\\n<ul>\\n<li>Tweak: Updated base style font styling in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Submit button not working inside popups in Atomic Form - Atomic Editor<\\/li>\\n<li>Fix: Forms fail to send when using ACF Email dynamic tag - Atomic Editor<\\/li>\\n<li>Fix: Custom CSS editor not editable in RTL websites - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.2 - 2026-04-13<\\/h4>\\n<ul>\\n<li>Fix: Interactions apply only to the first matching element instead of all instances on the page - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.1 - 2026-04-01<\\/h4>\\n<ul>\\n<li>Fix: Exposed text properties appear empty in existing components - Atomic Editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/35357\\\">#35357<\\/a>)<\\/li>\\n<li>Fix: Cannot publish existing components with overridable properties - Atomic Editor<\\/li>\\n<li>Fix: Unexpected characters appear when deleting attribute values using backspace - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>4.0.0 - 2026-03-30<\\/h4>\\n<ul>\\n<li>New: Introducing Atomic Forms using composable Atomic elements - create flexible form layouts by combining individual field elements - Atomic Editor<\\/li>\\n<li>New: Introducing Interactions with new triggers and custom effects for dynamic experiences - create animations based on user scroll and user behavior - Atomic Editor<\\/li>\\n<li>Tweak: Component creation is available for Pro users - Atomic Editor<\\/li>\\n<li>Tweak: Added the ability to detach Components into editable layouts - Atomic Editor<\\/li>\\n<li>Tweak: Added support for custom fonts in typography controls - Atomic Editor<\\/li>\\n<li>Fix: Unable to paste content into the Custom CSS field - Atomic Editor<\\/li>\\n<li>Fix: Error when assigning a dynamic custom field to a component&#39;s inner element in Components - Atomic Editor<\\/li>\\n<\\/ul>\\n<h4>3.35.1 - 2026-02-11<\\/h4>\\n<ul>\\n<li>Fix: Enqueue script errors when <code>WP_DEBUG<\\/code> is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/34617\\\">#34617<\\/a>)<\\/li>\\n<li>Fix: General UI issues in Editor screens in WordPress Admin<\\/li>\\n<\\/ul>\\n<h4>3.35.0 - 2026-02-02<\\/h4>\\n<ul>\\n<li>Tweak: Extended the color picker to support ACF fields - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables with custom units across relevant controls - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables in border radius controls - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.34.4 - 2026-01-29<\\/h4>\\n<ul>\\n<li>Fix: Shortcodes overflow the screen on Saved Templates screen in WordPress Admin<\\/li>\\n<li>Fix: Avoid Multiple Popups control does not work in Popups<\\/li>\\n<\\/ul>\\n<h4>3.34.3 - 2026-01-26<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder WordPress view does not work as expected<\\/li>\\n<li>Fix: Submissions menu appears even when the setting is disabled<\\/li>\\n<\\/ul>\\n<h4>3.34.2 - 2026-01-22<\\/h4>\\n<ul>\\n<li>Tweak: Updated notification behavior in Elementor menu in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.1 - 2026-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Unified the Elementor interface into a single place to manage, optimize, and configure Elementor capabilities in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.0 - 2025-12-22<\\/h4>\\n<ul>\\n<li>New: Added support for Display Conditions for Atomic Elements - Editor V4<\\/li>\\n<li>Tweak: Enabled media queries for the Desktop breakpoint only in Custom CSS - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Added support for Google Calendar in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Tel link in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF Image field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Removed icon from the accessibility tree in Flip Box widget<\\/li>\\n<li>Tweak: Applied CSS logical properties in text-align controls and improved RTL rendering in the Editor<\\/li>\\n<li>Fix: Website Template library displayed in English instead of the translated language<\\/li>\\n<li>Fix: Custom CSS field breaks when using certain characters - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\\">#23543<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn&#39;t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn&#39;t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the &#39;Avoid Duplicates&#39; option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn&#39;t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: &#39;Reading Settings&#39; unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder&#39;s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the &#39;Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added &#39;Structure&#39; indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to &#39;Copy&#39;, &#39;Paste&#39;, and &#39;Clear&#39; Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the &#39;Create Template&#39; button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the &#39;Loader&#39; animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to &#39;Current Query&#39; explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: &#39;Editing Mode&#39; for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas<\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove &#39;User IP&#39; and &#39;User Agent&#39; from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn&#39;t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn&#39;t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing &#39;self-hosted&#39; source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: &#39;Fallback: Recent Posts&#39; option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don&#39;t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn&#39;t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added &#39;Active item state&#39; to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget&#39;s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the &#39;Gap between slides&#39; control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can&#39;t edit page when using &#39;Content Tabs&#39; and &#39;Section&#39; options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups&#39; backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn&#39;t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to &#39;Show up to X times&#39; advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added &#39;Equal height&#39; functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note&#39;s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label&#39;s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn&#39;t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn&#39;t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn&#39;t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn&#39;t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn&#39;t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn&#39;t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn&#39;t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook&#39;s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn&#39;t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn&#39;t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn&#39;t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn&#39;t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn&#39;t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor&#39;s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn&#39;t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can&#39;t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn&#39;t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don&#39;t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn&#39;t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn&#39;t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>Elementor\\\\Utils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section&#39;s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can&#39;t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn&#39;t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn&#39;t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn&#39;t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code&#39;s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren&#39;t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted &#39;Max Height&#39; control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in &#39;Reply To&#39; Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted &#39;Max Height&#39; control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475%5D\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can&#39;t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder&#39;s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can&#39;t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of &#39;get_create_url&#39; in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn&#39;t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can&#39;t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn&#39;t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don&#39;t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn&#39;t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren&#39;t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can&#39;t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn&#39;t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can&#39;t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn&#39;t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don&#39;t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=&quot;navigation&quot;<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn&#39;t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn&#39;t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder&#39;s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder&#39;s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when &#39;Hide Title&#39; is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it&#39;s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it&#39;s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won&#39;t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for &#39;View Cart&#39; link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added &#39;Current Subcategories&#39; option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it&#39;s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it&#39;s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent&#39;s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it&#39;s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it&#39;s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn&#39;t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in &#39;typing&#39; and &#39;clip&#39; animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there&#39;s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don&#39;t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorPro\\\\Modules\\\\Forms\\\\Classes\\\\Action_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can&#39;t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - &#39;Link apply on&#39; logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with &#39;0&#39; for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\n\\\";}\",\"new_version\":\"4.1.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"6.8\",\"tested\":\"7.0\",\"elementor_requires\":\"3.34\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXZlcndlbGwiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzNzA1NTExLCJleHAiOjE3ODM3OTE5MTF9.HGWLuc6EpakvQlMi1IA_5s5owsm7_4r02Ocg8o-6xbs\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvZXZlcndlbGwiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzgzNzA1NTExLCJleHAiOjE3ODM3OTE5MTF9.HGWLuc6EpakvQlMi1IA_5s5owsm7_4r02Ocg8o-6xbs\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/assets.elementor.com\\/miscellaneous\\/v1\\/images\\/icon.svg\"},\"requires_php\":\"7.4\"}\";}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2309, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1783705513;s:7:\"checked\";a:3:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.13.5\";s:16:\"twentytwentyfive\";s:3:\"1.5\";}s:8:\"response\";a:1:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:6:\"4.13.6\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/astra.4.13.6.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.5.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}', 'off'),
(2271, 'elementor-custom-breakpoints-files', 'a:31:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1783642100;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1783642100;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1783642100;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1783642100;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1783642100;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1783642100;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1783642100;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1783642100;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1783642100;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1783642100;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1783642100;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1783642100;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1783642100;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1783642100;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1783642100;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1783642100;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1783642100;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1783642100;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1783642100;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1783642100;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1783642100;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1783642100;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1783642100;}s:31:\"custom-pro-widget-loop-grid.min\";a:1:{s:4:\"time\";i:1783642100;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1783642100;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1783642100;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1783642100;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1783642100;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1783642100;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1783642100;}s:31:\"custom-pro-widget-mega-menu.min\";a:1:{s:4:\"time\";i:1783642100;}}', 'auto'),
(2277, 'elementor_atomic_cache_validity__local', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:9:{i:66;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5037f5cf044\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:377;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5037f5cf190\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:12;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5037f5cf2fb\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:16;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a503827300cf\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:14;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a50382a5a1f8\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:18;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5038432a6d6\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:20;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5038575b227\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:22;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a503865f1420\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:36;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a503875b8238\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}}}', 'off'),
(2278, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:9:{s:12:\"far-envelope\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:494:\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\";s:3:\"key\";s:12:\"far-envelope\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fas-phone-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\";s:3:\"key\";s:13:\"fas-phone-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-caret-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:119:\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\";s:3:\"key\";s:14:\"fas-caret-down\";}s:7:\"version\";s:6:\"5.15.3\";}s:8:\"far-star\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:576;s:6:\"height\";i:512;s:4:\"path\";s:368:\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\";s:3:\"key\";s:8:\"far-star\";}s:7:\"version\";s:6:\"5.15.3\";}s:16:\"fas-star-of-life\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:480;s:6:\"height\";i:512;s:4:\"path\";s:560:\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\";s:3:\"key\";s:16:\"fas-star-of-life\";}s:7:\"version\";s:6:\"5.15.3\";}s:7:\"fas-fax\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:659:\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\";s:3:\"key\";s:7:\"fas-fax\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fab-facebook-f\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:172:\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\";s:3:\"key\";s:14:\"fab-facebook-f\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fab-instagram\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:922:\"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\";s:3:\"key\";s:13:\"fab-instagram\";}s:7:\"version\";s:6:\"5.15.3\";}s:15:\"fab-linkedin-in\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:300:\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\";s:3:\"key\";s:15:\"fab-linkedin-in\";}s:7:\"version\";s:6:\"5.15.3\";}}}}', 'auto'),
(219, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1783183831;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'),
(222, 'pp_license_key', '820357b27bedb9bf31cf47c98f5a04b1', 'auto'),
(223, 'pp_license_status', 'valid', 'auto'),
(224, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(225, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(226, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(244, 'elementor_notes_db_version', '5', 'auto'),
(245, '_elementor_mixpanel_config', 'a:2:{s:7:\"timeout\";i:1783550248;s:5:\"value\";s:190:\"[{\"sessionReplays\":{\"recordSessionsPercent\":1,\"cloudTemplates\":false,\"coreOnboarding\":false,\"enabled\":false,\"events\":{\"editor_loaded\":false,\"ob_onboarding_initialized\":false}},\"flags\":true}]\";}', 'off'),
(248, 'pp_elementor_modules', 'a:63:{i:0;s:21:\"pp-advanced-accordion\";i:1;s:16:\"pp-advanced-menu\";i:2;s:16:\"pp-advanced-tabs\";i:3;s:8:\"pp-album\";i:4;s:14:\"pp-author-list\";i:5;s:14:\"pp-breadcrumbs\";i:6;s:17:\"pp-business-hours\";i:7;s:19:\"pp-business-reviews\";i:8;s:10:\"pp-buttons\";i:9;s:14:\"pp-card-slider\";i:10;s:13:\"pp-categories\";i:11;s:9:\"pp-charts\";i:12;s:17:\"pp-content-reveal\";i:13;s:17:\"pp-content-ticker\";i:14;s:12:\"pp-countdown\";i:15;s:10:\"pp-counter\";i:16;s:10:\"pp-coupons\";i:17;s:10:\"pp-devices\";i:18;s:10:\"pp-divider\";i:19;s:15:\"pp-dual-heading\";i:20;s:16:\"pp-fancy-heading\";i:21;s:6:\"pp-faq\";i:22;s:10:\"pp-flipbox\";i:23;s:14:\"pp-google-maps\";i:24;s:11:\"pp-hotspots\";i:25;s:12:\"pp-icon-list\";i:26;s:18:\"pp-image-accordion\";i:27;s:19:\"pp-image-comparison\";i:28;s:16:\"pp-image-gallery\";i:29;s:15:\"pp-image-slider\";i:30;s:11:\"pp-info-box\";i:31;s:20:\"pp-info-box-carousel\";i:32;s:12:\"pp-info-list\";i:33;s:13:\"pp-info-table\";i:34;s:12:\"pp-instafeed\";i:35;s:13:\"pp-login-form\";i:36;s:16:\"pp-logo-carousel\";i:37;s:12:\"pp-logo-grid\";i:38;s:18:\"pp-magazine-slider\";i:39;s:10:\"pp-marquee\";i:40;s:14:\"pp-modal-popup\";i:41;s:20:\"pp-offcanvas-content\";i:42;s:14:\"pp-onepage-nav\";i:43;s:8:\"pp-posts\";i:44;s:13:\"pp-price-menu\";i:45;s:16:\"pp-pricing-table\";i:46;s:12:\"pp-promo-box\";i:47;s:15:\"pp-random-image\";i:48;s:9:\"pp-recipe\";i:49;s:20:\"pp-registration-form\";i:50;s:13:\"pp-review-box\";i:51;s:11:\"pp-showcase\";i:52;s:10:\"pp-sitemap\";i:53;s:8:\"pp-table\";i:54;s:20:\"pp-table-of-contents\";i:55;s:14:\"pp-team-member\";i:56;s:23:\"pp-team-member-carousel\";i:57;s:15:\"pp-testimonials\";i:58;s:14:\"pp-tiled-posts\";i:59;s:11:\"pp-timeline\";i:60;s:9:\"pp-toggle\";i:61;s:8:\"pp-video\";i:62;s:16:\"pp-video-gallery\";}', 'auto'),
(277, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(284, 'WPLANG', '', 'auto'),
(285, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(297, 'e_editor_counter', '119', 'auto'),
(298, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1783547376;s:5:\"value\";s:12640:\"[{\"id\":\"angie-super-community\",\"title\":\"Angie Community Library\",\"description\":\"Browse a library of snippets and widgets built by other Angie users, import any of them into your site, without consuming any credits or remix them with a prompt to match your brief. Every snippet is vetted by the Elementor team. You can also submit your own work for the community to discover.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-community.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-community\\/\",\"readMoreText\":\"Browse library\"},{\"id\":\"4.1-atomic-form\",\"title\":\"Generate Atomic Forms\",\"description\":\"Ask Angie to generate forms for lead generation, contact, bookings, promotions and more. Use the new atomic form elements like date picker, radio button, and file upoad.\",\"topic\":\"Atomic Editor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/41-atomic-form-angie.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.1-atomic-form\",\"title\":\"Generate Atomic Forms\",\"description\":\"Ask Angie to generate forms for lead generation, contact, bookings, promotions and more. Use the new atomic form elements like date picker, radio button, and file upoad.\",\"topic\":\"Atomic Editor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/41-atomic-form-angie.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-blog\\/\",\"readMoreText\":\"Learn more\",\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.1-atomic-form\\/\"},{\"id\":\"cookie-consent-launch\",\"title\":\"Introducing Cookie Consent\",\"description\":\"Add a cookie consent banner to your site in minutes. Scan for cookies, manage scripts based on visitor consent, and customize the banner to match your site, or design it in the Editor with Elementor Popups. Free to get started, with more features in Elementor One.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cookie-launch.png\",\"chipTags\":[\"New feature\"],\"cta\":\"Get Cookie Consent\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/cookie-consent-in-editor-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"cookiez\\/cookiez.php\",\"operator\":\"!=\"}]]},{\"id\":\"angie-super-admin\",\"title\":\"Super Admin Mode\",\"description\":\"Revolutionize your WordPress workflow with Super Admin Mode. Perform root-level WordPress operations through natural language - bulk post and product updates, PHP error diagnosis, and more.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-super-admin.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-super-admin\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-default\",\"title\":\"The new default\",\"description\":\"New sites now start with version 4.0 and atomic features enabled by default. Existing sites can choose to manually activate. Nothing happens to your existing layouts and sites.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-default.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"angie-revisions\",\"title\":\"Restore snippets precisely with Revisions\",\"description\":\"Restore any previous version of your snippets to its exact saved state. Each time you revise, Angie preserves a complete snapshot of the snippet\'s code, structure, and configuration. Open version history, select any saved state, and return to it in one click.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-notification-revision.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-revisions\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-atomic-form.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-atomic-forms\",\"title\":\"Atomic Forms\",\"description\":\"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-atomic-forms\\/\"},{\"id\":\"angie-cloud-library\",\"title\":\"Introducing Angie Cloud Library\",\"description\":\"Your Angie snippets are now available across every site you manage. Save any asset you build to your account and pull it into a new project in a few clicks, fully editable and ready to adapt. Available to all users with free daily credits.\",\"topic\":\"Angie\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-cloud-library.png\",\"chipTags\":[\"Angie\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-angie-cloud-library\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"4.0-interactions\",\"title\":\"Pro Interactions\",\"description\":\"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-interactions.png\",\"chipTags\":[\"Atomic Editor\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-interactions\\/\"},{\"id\":\"4.0-sync-design-system\",\"title\":\"Sync and share design systems\",\"description\":\"Export and import Variables and Classes between sites, and sync them with v3 Global Styles. Maintain a consistent design system across projects and across versions.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/4.0-sync-design-system.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-4.0-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"angie-launch\",\"title\":\"Introducing Angie Code.\",\"description\":\"Create custom Elementor widgets, and snippets for custom site functionality from a simple description. Built natively for WordPress, and Elementor. Preview safely, refine through conversation, and publish when ready.\",\"topic\":\"Angie Code\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/angie-launch.png\",\"chipTags\":[\"New launch\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-angie-launch\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"partner-program\",\"title\":\"Partner with Elementor. Grow your business.\",\"description\":\"Join to unlock exclusive access, secure visibility, benefit from marketing opportunities, and create additional revenue from the work you have already done. Join for free and start benefiting!\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/notification-partner.png\",\"chipTags\":[\"Partner Program\"],\"cta\":\"Apply now\",\"ctaLink\":\"https:\\/\\/my.elementor.com\\/agency\\/\"},{\"id\":\"manage-launch\",\"title\":\"Introducing Manage\",\"description\":\"Monitor, optimize and maintain all your sites from one centralized dashboard. Track performance, perform bulk updates and detect security risks to stay ahead of issues.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/manage.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Start free\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/manage\\/whatsnew\"},{\"id\":\"components-3.35\",\"title\":\"Components\",\"description\":\"Build modular, reusable sections that update everywhere and decide how much control to give away to your team or clients.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/components-3-35.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-components-3.35-blog\",\"readMoreText\":\"Learn More\"},{\"id\":\"one-launch\",\"title\":\"Introducing Elementor One\",\"description\":\"The complete website building experience. All the tools to create, optimize, and manage websites, unified under one roof.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/one-launch.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Explore Elementor One\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/launch-whats-new\"},{\"id\":\"atomic-tabs-3.34\",\"title\":\"Atomic Tabs\",\"description\":\"Nest any type of content inside tab triggers or content panels, unlocking a truly atomic way of design.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tabs-3.34.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-manager-3.33\",\"title\":\"Variables Manager\",\"description\":\"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.\",\"topic\":\"Version 4.0\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"Atomic Editor\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}', 'off'),
(2302, '_transient_timeout_elementor_migrations_manifest', '1783748709', 'off'),
(2303, '_transient_elementor_migrations_manifest', 'a:2:{s:7:\"version\";s:11:\"4.1.4:4.1.2\";s:8:\"manifest\";a:2:{s:10:\"widgetKeys\";a:2:{s:20:\"e-form-submit-button\";a:1:{i:0;a:2:{s:4:\"from\";s:5:\"label\";s:2:\"to\";s:4:\"text\";}}s:15:\"e-form-textarea\";a:1:{i:0;a:2:{s:4:\"from\";s:9:\"maxlength\";s:2:\"to\";s:6:\"length\";}}}s:9:\"propTypes\";a:9:{s:14:\"string-to-html\";a:3:{s:8:\"fromType\";s:6:\"string\";s:6:\"toType\";s:4:\"html\";s:4:\"path\";s:30:\"operations/string-to-html.json\";}s:14:\"number-to-size\";a:3:{s:8:\"fromType\";s:6:\"number\";s:6:\"toType\";s:4:\"size\";s:4:\"path\";s:30:\"operations/number-to-size.json\";}s:22:\"number-to-number-range\";a:3:{s:8:\"fromType\";s:6:\"number\";s:6:\"toType\";s:12:\"number-range\";s:4:\"path\";s:38:\"operations/number-to-number-range.json\";}s:15:\"html-to-html-v2\";a:3:{s:8:\"fromType\";s:4:\"html\";s:6:\"toType\";s:7:\"html-v2\";s:4:\"path\";s:31:\"operations/html-to-html-v2.json\";}s:18:\"html-v2-to-html-v3\";a:3:{s:8:\"fromType\";s:7:\"html-v2\";s:6:\"toType\";s:7:\"html-v3\";s:4:\"path\";s:34:\"operations/html-v2-to-html-v3.json\";}s:20:\"image-src-to-svg-src\";a:3:{s:8:\"fromType\";s:9:\"image-src\";s:6:\"toType\";s:7:\"svg-src\";s:4:\"path\";s:36:\"operations/image-src-to-svg-src.json\";}s:19:\"config-to-config-v2\";a:3:{s:8:\"fromType\";s:6:\"config\";s:6:\"toType\";s:9:\"config-v2\";s:4:\"path\";s:35:\"operations/config-to-config-v2.json\";}s:15:\"email-to-emails\";a:3:{s:8:\"fromType\";s:5:\"email\";s:6:\"toType\";s:6:\"emails\";s:4:\"path\";s:31:\"operations/email-to-emails.json\";}s:21:\"string-to-font-family\";a:3:{s:8:\"fromType\";s:6:\"string\";s:6:\"toType\";s:11:\"font-family\";s:4:\"path\";s:37:\"operations/string-to-font-family.json\";}}}}', 'off'),
(344, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(345, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(346, 'elementor_pro_convertkit_api_key', '', 'auto'),
(347, 'elementor_pro_drip_api_token', '', 'auto'),
(348, 'elementor_pro_getresponse_api_key', '', 'auto'),
(349, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(350, 'elementor_typekit-kit-id', '', 'auto'),
(1747, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(352, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(353, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(354, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(355, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(356, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(357, 'elementor_editor_break_lines', '', 'auto'),
(358, 'elementor_unfiltered_files_upload', '1', 'auto'),
(359, 'elementor_google_font', '1', 'auto'),
(360, 'elementor_form-submissions', '', 'auto'),
(361, 'elementor_load_fa4_shim', '', 'auto'),
(362, 'elementor_meta_generator_tag', '', 'auto'),
(363, 'elementor_css_print_method', 'external', 'auto'),
(364, 'elementor_optimized_image_loading', '1', 'auto'),
(365, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(366, 'elementor_lazy_load_background_images', '1', 'auto'),
(367, 'elementor_local_google_fonts', '0', 'auto'),
(368, 'elementor_element_cache_ttl', '24', 'auto'),
(369, 'elementor_experiment-e_panel_promotions', 'default', 'auto'),
(370, 'elementor_experiment-markdown_rendering', 'default', 'auto'),
(371, 'elementor_experiment-container', 'default', 'auto'),
(372, 'elementor_experiment-mega-menu', 'default', 'auto'),
(336, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(337, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(338, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(334, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(335, 'elementor_google_maps_api_key', '', 'auto'),
(341, 'elementor_pro_facebook_app_id', '', 'auto'),
(342, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(339, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(343, 'elementor_validate_api_data', '', 'auto'),
(340, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(311, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1791007329', 'off'),
(312, '_transient__elementor_ab_test_plg_site_mailer_submission', '2', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(320, 'elementor_controls_usage', 'a:5:{s:7:\"wp-page\";a:11:{s:9:\"container\";a:2:{s:5:\"count\";i:70;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:52;s:5:\"width\";i:19;s:20:\"flex_justify_content\";i:28;s:14:\"flex_direction\";i:20;s:9:\"flex_wrap\";i:3;s:8:\"flex_gap\";i:4;s:16:\"flex_align_items\";i:2;s:11:\"boxed_width\";i:2;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:70;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:29;s:16:\"background_color\";i:2;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;}s:14:\"section_border\";a:5:{s:13:\"border_radius\";i:17;s:12:\"border_width\";i:12;s:12:\"border_color\";i:12;s:21:\"box_shadow_box_shadow\";i:4;s:26:\"box_shadow_box_shadow_type\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:70;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:38;s:6:\"margin\";i:11;s:10:\"_flex_size\";i:3;s:11:\"css_classes\";i:14;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:42;s:18:\"animation_duration\";i:19;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:17;s:11:\"header_size\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:6;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:17;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}s:15:\"_section_border\";a:4:{s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;s:14:\"_border_radius\";i:2;s:14:\"_border_border\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:22;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:22;s:4:\"link\";i:22;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:14;s:16:\"background_color\";i:12;s:13:\"border_border\";i:12;s:12:\"border_width\";i:12;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:22;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:11;s:10:\"title_text\";i:11;s:16:\"description_text\";i:11;s:10:\"title_size\";i:11;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:1:{s:18:\"title_bottom_space\";i:11;}s:19:\"section_style_image\";a:5:{s:10:\"image_size\";i:11;s:19:\"image_border_radius\";i:11;s:19:\"image_border_border\";i:11;s:18:\"image_border_width\";i:11;s:18:\"image_border_color\";i:11;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:11;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:13;s:10:\"image_size\";i:13;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:13;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:0:{}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:19:\"image_border_radius\";i:13;s:5:\"align\";i:5;s:5:\"width\";i:5;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:13;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:13;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:13;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:2;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:3:{s:3:\"gap\";i:2;s:5:\"color\";i:1;s:6:\"weight\";i:1;}s:18:\"section_text_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:5:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;s:13:\"mark_required\";i:2;s:11:\"show_labels\";i:2;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:2;s:11:\"button_size\";i:2;}s:13:\"section_email\";a:5:{s:13:\"form_metadata\";i:2;s:8:\"email_to\";i:2;s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;s:14:\"email_reply_to\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_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:7:\"row_gap\";i:2;s:12:\"html_spacing\";i:2;}s:19:\"section_field_style\";a:2:{s:18:\"field_border_color\";i:2;s:19:\"field_border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:1;s:4:\"view\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:4:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:26:\"icon_typography_font_style\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:10:\"pp-marquee\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_marquee\";a:2:{s:5:\"items\";i:1;s:11:\"posts_items\";i:1;}s:16:\"section_settings\";a:2:{s:8:\"on_hover\";i:1;s:5:\"speed\";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:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"view\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_style_box\";a:2:{s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}}s:9:\"container\";a:6:{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:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:2;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:14:\"flex_direction\";i:2;s:8:\"flex_gap\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:4:\"page\";a:9:{s:5:\"image\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"_section_style\";a:6:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:3:{s:25:\"motion_fx_motion_fx_mouse\";i:1;s:27:\"motion_fx_mouseTrack_effect\";i:1;s:26:\"motion_fx_mouseTrack_speed\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:19:\"image_border_radius\";i:4;s:5:\"align\";i:2;s:5:\"width\";i:2;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:21;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:15;s:5:\"width\";i:7;s:20:\"flex_justify_content\";i:7;s:14:\"flex_direction\";i:6;s:8:\"flex_gap\";i:3;s:16:\"flex_align_items\";i:2;s:11:\"boxed_width\";i:1;s:9:\"flex_wrap\";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:21;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_radius\";i:7;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:21;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:13;s:10:\"_flex_size\";i:1;s:6:\"margin\";i:3;s:11:\"css_classes\";i:4;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:12;s:18:\"animation_duration\";i:7;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:1;}s:18:\"section_text_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:4;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:7;s:4:\"link\";i:7;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:6;s:12:\"border_width\";i:4;s:16:\"background_color\";i:3;s:13:\"border_border\";i:3;}}}}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:4:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:10:\"title_size\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_style_box\";a:2:{s:10:\"text_align\";i:1;s:18:\"title_bottom_space\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:1:{s:18:\"title_bottom_space\";i:3;}s:19:\"section_style_image\";a:5:{s:10:\"image_size\";i:3;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_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:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:5:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:1;s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:2:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"footer\";a:6:{s:7:\"heading\";a:2:{s:5:\"count\";i:4;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:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}}}}s: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:9:\"container\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:6;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i: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:6;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:3;s:14:\"flex_direction\";i:3;s:20:\"flex_justify_content\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:4:{s:24:\"icon_self_vertical_align\";i:2;s:20:\"icon_vertical_offset\";i:2;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;}s:18:\"section_text_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}}s:6:\"header\";a:6:{s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:23:\"icon_align_mobile_extra\";i:2;s:10:\"icon_align\";i:2;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:20:\"flex_justify_content\";i:4;s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:1;s:16:\"flex_align_items\";i:1;s:10:\"min_height\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:7;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:3;s:20:\"e_display_conditions\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:5:{s:23:\"section_style_main_menu\";a:6:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:11:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_width\";i:1;s:22:\"dropdown_divider_color\";i:1;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;}s:12:\"style_toggle\";a:4:{s:12:\"toggle_color\";i:1;s:23:\"toggle_background_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:29:\"toggle_background_color_hover\";i:1;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:1;s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_color\";i:1;s:24:\"mobile_sub_link_bg_color\";i:1;s:21:\"mobile_sub_link_color\";i:1;s:17:\"mobile_link_hover\";i:1;s:20:\"mobile_link_bg_hover\";i:1;s:24:\"mobile_sub_link_bg_hover\";i:1;s:21:\"mobile_sub_link_hover\";i:1;s:16:\"close_icon_color\";i:1;s:27:\"close_icon_background_color\";i:1;s:33:\"close_icon_background_color_hover\";i:1;s:22:\"close_icon_color_hover\";i:1;}s:16:\"style_typography\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:13:\"border_radius\";i:1;}}}}s:16:\"theme-page-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}}', 'off'),
(331, '_elementor_settings_update_time', '1783507121', 'auto'),
(332, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(333, 'elementor_disable_color_schemes', 'yes', 'auto'),
(373, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(374, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(375, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(376, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(377, 'elementor_experiment-nested-elements', 'default', 'auto'),
(397, 'site_logo', '53', 'auto'),
(387, '_elementor_element_cache_unique_id', '5163948f00533e5bd0f0190628e9743f', 'auto'),
(415, 'elementor_angie_guide_auto_shown', 'yes', 'auto'),
(423, '_astra_customizer_published_timestamps', 'a:7:{i:0;i:1783235013;i:1;i:1783235077;i:2;i:1783235292;i:3;i:1783235326;i:4;i:1783235386;i:5;i:1783235413;i:6;i:1783323712;}', 'off'),
(424, 'astra_usage_events_pending', 'a:1:{i:0;a:4:{s:10:\"event_name\";s:26:\"first_customizer_published\";s:11:\"event_value\";s:6:\"4.13.5\";s:10:\"properties\";a:0:{}s:4:\"date\";s:19:\"2026-07-05 07:03:33\";}}', 'auto'),
(437, '_elementor_onboarding_strings_en', 'a:2:{s:7:\"timeout\";i:1783512859;s:5:\"value\";s:5188:\"{\"common.continue\":\"Continue\",\"common.skip\":\"Skip\",\"common.back\":\"Back\",\"common.finish\":\"Finish\",\"common.loading\":\"Loading\\u2026\",\"common.upgrade\":\"Upgrade\",\"common.close_onboarding\":\"Close onboarding\",\"common.installed\":\"Installed\",\"common.recommended\":\"Recommended\",\"error.failed_mark_exit\":\"Failed to mark user exit.\",\"error.failed_complete_step\":\"Failed to complete step.\",\"error.pro_install_failed\":\"Couldn\'t install Elementor Pro. Please try again later\",\"error.theme_install_failed\":\"Theme installation didn\'t complete. Please try again later\",\"login.title\":\"Let\\u2019s get to work.\",\"login.sign_in\":\"Sign in to Elementor\",\"login.continue_another_way\":\"Continue another way\",\"login.continue_as_guest\":\"Continue as a guest\",\"steps.building_for.title\":\"Who are you building for?\",\"steps.building_for.greeting_with_name\":\"Hey %1$s %2$s Let\\u2019s get your site set up.\",\"steps.building_for.greeting_without_name\":\"Hey%s Let\\u2019s get your site set up.\",\"steps.building_for.option_myself\":\"Myself or someone I know\",\"steps.building_for.option_business\":\"My business or workplace\",\"steps.building_for.option_client\":\"A client\",\"steps.building_for.option_exploring\":\"Just exploring\",\"steps.site_about.title\":\"What is your site about?\",\"steps.site_about.subtitle\":\"Choose anything that applies.\",\"steps.site_about.option_small_med_business\":\"Small-Med Business\",\"steps.site_about.option_online_store\":\"Online store\",\"steps.site_about.option_company_site\":\"Company site\",\"steps.site_about.option_blog\":\"Blog\",\"steps.site_about.option_landing_page\":\"Landing page\",\"steps.site_about.option_booking\":\"Booking\",\"steps.site_about.option_organization\":\"Organization\",\"steps.site_about.option_other\":\"Other\",\"steps.site_about.greeting_myself\":\"Got it! We\\u2019ll keep things simple.\",\"steps.site_about.greeting_business\":\"Great! Let\\u2019s set up your business site.\",\"steps.site_about.greeting_client\":\"Nice! Let\\u2019s create something for your client.\",\"steps.site_about.greeting_fallback\":\"Let\\u2019s get started!\",\"steps.experience_level.title\":\"How experienced are you with Elementor?\",\"steps.experience_level.subtitle\":\"This helps us adjust the editor to your workflow.\",\"steps.experience_level.option_beginner\":\"I\\u2019m just getting started\",\"steps.experience_level.option_intermediate\":\"I have some experience\",\"steps.experience_level.option_advanced\":\"I\\u2019m very comfortable with Elementor\",\"steps.theme_selection.title\":\"Start with a theme that fits your needs\",\"steps.theme_selection.subtitle\":\"Hello themes are built to work seamlessly with Elementor.\",\"steps.theme_selection.v2.title\":\"Start with Hello\",\"steps.theme_selection.v2.subtitle\":\"Use Elementor\\u2019s lightweight theme for faster setup and full design control.\",\"steps.theme_selection.aria_label\":\"Theme selection\",\"steps.theme_selection.theme_hello_label\":\"Hello\",\"steps.theme_selection.theme_hello_description\":\"A flexible canvas theme you can shape from the ground up\",\"steps.theme_selection.by_elementor\":\"by Elementor\",\"steps.theme_selection.theme_hello_biz_label\":\"Hello Biz\",\"steps.theme_selection.theme_hello_biz_description\":\"A ready-to-start theme with smart layouts and widgets\",\"steps.theme_selection.greeting_beginner\":\"Glad you\\u2019re here!\",\"steps.theme_selection.greeting_default\":\"Great. Let\\u2019s take it to the next step\",\"steps.theme_selection.continue_with_theme\":\"Continue with this theme\",\"steps.theme_selection.v2.continue_with_theme\":\"Continue with Hello\",\"steps.site_features.title\":\"What do you want to include in your site?\",\"steps.site_features.subtitle\":\"We\\u2019ll use this to tailor suggestions for you.\",\"steps.site_features.continue_with_free\":\"Continue with Free\",\"steps.site_features.option_classes_variables\":\"Design system\",\"steps.site_features.option_hello_theme\":\"Hello theme\",\"steps.site_features.option_cookie_consent\":\"Cookie Consent\",\"steps.site_features.option_interactions\":\"Interactions\",\"steps.site_features.option_theme_builder\":\"Theme builder\",\"steps.site_features.option_lead_collection\":\"Forms & leads\",\"steps.site_features.option_custom_code\":\"Custom Code\",\"steps.site_features.option_email_deliverability\":\"Email delivery\",\"steps.site_features.option_ai_generator\":\"AI tools\",\"steps.site_features.option_image_optimization\":\"Image optimization\",\"steps.site_features.option_accessibility_tools\":\"Accessibility\",\"steps.site_features.woocommerce\":\"WooCommerce\",\"steps.site_features.included\":\"Included\",\"steps.site_features.plan_recommendation_one\":\"Nice picks \\ud83d\\ude42 Elementor One has you covered.\",\"steps.site_features.plan_recommendation_pro\":\"Advanced tools? Elementor Pro includes them.\",\"steps.site_features.compare_plans\":\"View plans\",\"pro_install.title\":\"You already have a Pro subscription\",\"pro_install.subtitle\":\"Would you like to install it on this site now?\",\"pro_install.installing\":\"Installing Elementor Pro\\u2026\",\"pro_install.installing_short\":\"Installing\\u2026\",\"pro_install.install_button\":\"Install Pro on this site\",\"pro_install.logo_alt\":\"Elementor + Elementor Pro\",\"pro_install.do_it_later\":\"I\\u2019ll do it later\",\"completion.title\":\"Getting things ready\",\"completion.subtitle\":\"Tailoring the editor to your goals and workflow\\u2026\"}\";}', 'off'),
(441, '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:\"#bd9066\";i:1;s:7:\"#294c4e\";i:2;s:7:\"#060606\";i:3;s:7:\"#393939\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f7f1ec\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}', 'on');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1114, '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\";s:2:\"18\";s:5:\"right\";s:2:\"36\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"36\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:2:\"-2\";s:5:\"right\";s:2:\"-2\";s:6:\"bottom\";s:2:\"-2\";s:4:\"left\";s:2:\"-2\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[secondary-button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[secondary-theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[secondary-theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[secondary-theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[secondary-theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:66:\"astra-settings[secondary-theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[secondary-button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[secondary-button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[secondary-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[secondary-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:13;s:5:\"right\";i:30;s:6:\"bottom\";i:13;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:28;s:6:\"bottom\";i:12;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:24;s:6:\"bottom\";i:10;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:63:\"astra-settings[secondary-theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:5:\"right\";i:2;s:6:\"bottom\";i:2;s:4:\"left\";i:2;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"section-secondary-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[narrow-container-max-width]\";a:4:{s:7:\"default\";i:750;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:7:\"default\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:22:\"sanitize_logo_svg_icon\";}}s:39:\"astra-settings[logo-svg-site-title-gap]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:1:\"5\";s:6:\"tablet\";s:1:\"5\";s:6:\"mobile\";s:1:\"5\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[site-identity-title-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[logo-svg-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-site-tagline]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[site-icon-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[blog-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[blog-layout]\";a:4:{s:7:\"default\";s:13:\"blog-layout-4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[blog-post-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[archive-post-content-structure-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:5:{i:0;s:5:\"image\";i:1;s:8:\"category\";i:2;s:5:\"title\";i:3;s:10:\"title-meta\";i:4;s:7:\"excerpt\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-meta-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[blog-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:46:\"astra-settings[blog-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[blog-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-hover-effect]\";a:4:{s:7:\"default\";s:7:\"zoom-in\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[blog-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[blog-post-color-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[post-card-background-overlay]\";a:4:{s:7:\"default\";a:2:{s:15:\"background-type\";s:0:\"\";s:16:\"background-color\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[post-card-border-radius]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:6;s:5:\"right\";i:6;s:6:\"bottom\";i:6;s:4:\"left\";i:6;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[blog-post-meta-divider-type]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[blog-meta-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[single-content-images-shadow]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-blog-single-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[single-post-outside-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[single-post-inside-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-sticky-sidebar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-sidebar-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[ast-site-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[surface-colors-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[content-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-site-layout-button-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[global-color-palette]\";a:4:{s:7:\"default\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#bd9066\";i:1;s:7:\"#294c4e\";i:2;s:7:\"#060606\";i:3;s:7:\"#393939\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f7f1ec\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:20:\"astra-color-palettes\";a:4:{s:7:\"default\";a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#bd9066\";i:1;s:7:\"#294c4e\";i:2;s:7:\"#060606\";i:3;s:7:\"#393939\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f7f1ec\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#111111\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[theme-color-divider-reset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:7:\"#ab733e\";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:23:\"\'Open Sans\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:15:\"400,500,600,700\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s: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: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: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:25:\"\'Playfair Display\', 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:\"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:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:23:\"400,500,600,700,800,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: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-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:48;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h1]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.4\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h2]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:34;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: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-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:23;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h5]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h6]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.25\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[enable-scroll-to-id]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[site-accessibility-toggle]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[site-accessibility-highlight-type]\";a:4:{s:7:\"default\";s:6:\"dotted\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[site-accessibility-highlight-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[site-accessibility-highlight-input-type]\";a:4:{s:7:\"default\";s:7:\"disable\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[site-accessibility-highlight-input-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[single-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[single-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[page-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[page-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"ast-dynamic-single-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-single-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:43:\"ast-dynamic-single-e-floating-buttons-title\";i:1;s:42:\"ast-dynamic-single-e-floating-buttons-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:92:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:95:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:96:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:101:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:79:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-e-floating-buttons-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-single-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-dynamic-single-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"ast-dynamic-single-e-floating-buttons-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:57:\"astra-settings[single-posttype-e-floating-buttons-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-post-ast-content-layout]\";a:4:{s:7:\"default\";s: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:23:\"\'Open Sans\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s: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:1:\"1\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[secondary-font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:60:\"var( --ast-global-color-primary, var(--ast-global-color-4) )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:70:\"var( --ast-global-color-subtle-background, var(--ast-global-color-7) )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:70:\"var( --ast-global-color-subtle-background, var(--ast-global-color-7) )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[mobile-header-toggle-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:60:\"astra-settings[section-header-mobile-trigger-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[off-canvas-move-body]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[off-canvas-move-body-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:80;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:60:\"var( --ast-global-color-primary, var(--ast-global-color-4) )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:70:\"var( --ast-global-color-subtle-background, var(--ast-global-color-7) )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[live-search-result-count]\";a:4:{s:7:\"default\";i:5;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:39:\"https://mrarif.me/everwell/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-account-text-design-options]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-header-account-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-hb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-hb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-header-typo-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[font-extras-header-mobile-menu]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-menu-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:64:\"astra-settings[section-header-mobile-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:70:\"var( --ast-global-color-subtle-background, var(--ast-global-color-7) )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:26:\"var(--ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[section-footer-copyright-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-footer-copyright-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-footer-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-fb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[footer-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-radius-fields]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-fb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-primary-footer-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:70:\"var( --ast-global-color-subtle-background, var(--ast-global-color-7) )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-3-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-4-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:37:{s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(458, 'elementor_library_category_children', 'a:0:{}', 'auto'),
(2301, '_elementor_design_system_sync_css_meta', 'a:2:{s:4:\"time\";i:1783705509;i:0;b:0;}', 'auto'),
(2273, 'elementor_atomic_cache_validity__component-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:9:{i:66;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:377;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:12;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:16;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:14;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:18;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:20;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:22;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:36;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(454, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s: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:21:{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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:21:{s:4:\"tmpl\";i: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:26:\"minimum_hello_plus_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(455, 'pp_templates_library', 'a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:10:{i:0;s:5:\"About\";i:1;s:7:\"Contact\";i:2;s:4:\"FAQs\";i:3;s:8:\"Features\";i:4;s:7:\"Gallery\";i:5;s:4:\"Hero\";i:6;s:7:\"Pricing\";i:7;s:8:\"Services\";i:8;s:4:\"Team\";i:9;s:12:\"Testimonials\";}}s:4:\"page\";a:1:{s:10:\"categories\";N;}}s:10:\"categories\";s:97:\"[\"About\",\"Contact\",\"FAQs\",\"Features\",\"Gallery\",\"Hero\",\"Pricing\",\"Services\",\"Team\",\"Testimonials\"]\";s:9:\"templates\";a:123:{i:0;a:13:{s:2:\"id\";i:92;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593414217;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593414217;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"watch\"]\";s:17:\"has_page_settings\";b:0;}i:1;a:13:{s:2:\"id\";i:278;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593429838;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593429838;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:27:\"[\"about\",\"flavours\",\"food\"]\";s:17:\"has_page_settings\";b:0;}i:2;a:13:{s:2:\"id\";i:117;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593415187;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593415187;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:20:\"[\"about\",\"graphics\"]\";s:17:\"has_page_settings\";b:0;}i:3;a:13:{s:2:\"id\";i:141;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-3-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593416658;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593416658;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"story\"]\";s:17:\"has_page_settings\";b:0;}i:4;a:13:{s:2:\"id\";i:152;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-4-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593417324;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593417324;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:19:\"[\"about\",\"boating\"]\";s:17:\"has_page_settings\";b:0;}i:5;a:13:{s:2:\"id\";i:170;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593419870;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593419870;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"phone\"]\";s:17:\"has_page_settings\";b:0;}i:6;a:13:{s:2:\"id\";i:185;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-6-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593420403;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593420403;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:17:\"[\"about\",\"beach\"]\";s:17:\"has_page_settings\";b:0;}i:7;a:13:{s:2:\"id\";i:213;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593421357;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593421357;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:18:\"[\"about\",\"typing\"]\";s:17:\"has_page_settings\";b:0;}i:8;a:13:{s:2:\"id\";i:229;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-8-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593427712;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593427712;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:16:\"[\"about\",\"food\"]\";s:17:\"has_page_settings\";b:0;}i:9;a:13:{s:2:\"id\";i:255;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/about-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593429117;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"About\";s:4:\"date\";i:1593429117;s:10:\"human_date\";s:13:\"June 29, 2020\";s:4:\"tags\";s:18:\"[\"about\",\"dreams\"]\";s:17:\"has_page_settings\";b:0;}i:10;a:13:{s:2:\"id\";i:3531;s:5:\"title\";s:9:\"Adventure\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/adventure-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603691041;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/adventure/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603691041;s:10:\"human_date\";s:16:\"October 26, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:11;a:13:{s:2:\"id\";i:4437;s:5:\"title\";s:6:\"Agency\";s:9:\"thumbnail\";s:79:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/agency-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603972476;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603972476;s:10:\"human_date\";s:16:\"October 29, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:12;a:13:{s:2:\"id\";i:5062;s:5:\"title\";s:12:\"Architecture\";s:9:\"thumbnail\";s:85:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/Architecture-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605081063;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:114:\"https://demo.powerpackelements.com/blocks/architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605081063;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:13;a:13:{s:2:\"id\";i:4570;s:5:\"title\";s:12:\"Black Friday\";s:9:\"thumbnail\";s:78:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/black-friday.png\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1604042655;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:114:\"https://demo.powerpackelements.com/blocks/black-friday/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1604042655;s:10:\"human_date\";s:16:\"October 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:14;a:13:{s:2:\"id\";i:5166;s:5:\"title\";s:4:\"Cafe\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/cafe-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605081334;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:106:\"https://demo.powerpackelements.com/blocks/cafe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605081334;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:15;a:13:{s:2:\"id\";i:4316;s:5:\"title\";s:9:\"Cafe Home\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/cafe-home-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603972410;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/cafe-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603972410;s:10:\"human_date\";s:16:\"October 29, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:16;a:13:{s:2:\"id\";i:4165;s:5:\"title\";s:10:\"Car Dealer\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/car-dealer.png\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603884036;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/car-dealer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603884036;s:10:\"human_date\";s:16:\"October 28, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:17;a:13:{s:2:\"id\";i:4034;s:5:\"title\";s:6:\"Church\";s:9:\"thumbnail\";s:79:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/church-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603800402;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/church/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603800402;s:10:\"human_date\";s:16:\"October 27, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:18;a:13:{s:2:\"id\";i:83;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1588859317;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1588859317;s:10:\"human_date\";s:11:\"May 7, 2020\";s:4:\"tags\";s:19:\"[\"contact\",\"water\"]\";s:17:\"has_page_settings\";b:0;}i:19;a:13:{s:2:\"id\";i:589;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593510200;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593510200;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:20;a:13:{s:2:\"id\";i:629;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-11.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593511723;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593511723;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:21;a:13:{s:2:\"id\";i:338;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593494101;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593494101;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:22;a:13:{s:2:\"id\";i:402;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593496786;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593496786;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:20:\"[\"contact\",\"travel\"]\";s:17:\"has_page_settings\";b:0;}i:23;a:13:{s:2:\"id\";i:432;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-4-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593498805;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593498805;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:24;a:13:{s:2:\"id\";i:460;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593500589;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593500589;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:25;a:13:{s:2:\"id\";i:482;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593501520;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593501520;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:26;a:13:{s:2:\"id\";i:518;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593502575;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593502575;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:21:\"[\"bicycle\",\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:27;a:13:{s:2:\"id\";i:532;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593503384;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593503384;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:28;a:13:{s:2:\"id\";i:550;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/05/contact-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593504454;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Contact\";s:4:\"date\";i:1593504454;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:17:\"has_page_settings\";b:0;}i:29;a:13:{s:2:\"id\";i:5437;s:5:\"title\";s:17:\"Digital marketing\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2021/07/digital-marketing.png\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1626869205;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:119:\"https://demo.powerpackelements.com/blocks/digital-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1626869205;s:10:\"human_date\";s:13:\"July 21, 2021\";s:4:\"tags\";s:21:\"[\"digital marketing\"]\";s:17:\"has_page_settings\";b:0;}i:30;a:13:{s:2:\"id\";i:2385;s:5:\"title\";s:11:\"Electrician\";s:9:\"thumbnail\";s:84:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/electrician-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1602589921;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/electrician/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1602589921;s:10:\"human_date\";s:16:\"October 13, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:31;a:13:{s:2:\"id\";i:748;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593580754;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593580754;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:31:\"[\"expensive\",\"faqs\",\"warranty\"]\";s:17:\"has_page_settings\";b:0;}i:32;a:13:{s:2:\"id\";i:867;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-10.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593594366;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/faqs-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593594366;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:33;a:13:{s:2:\"id\";i:765;s:5:\"title\";s:5:\"FAQ 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-2.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593581834;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593581834;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:22:\"[\"bluetooth\",\"device\"]\";s:17:\"has_page_settings\";b:0;}i:34;a:13:{s:2:\"id\";i:787;s:5:\"title\";s:5:\"FAQ 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-3.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593582700;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593582700;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:35;a:13:{s:2:\"id\";i:801;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:71:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faq-4.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593586148;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593586148;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:36;a:13:{s:2:\"id\";i:806;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:78:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faq-5-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593588234;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593588234;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:37;a:13:{s:2:\"id\";i:827;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-6-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593589791;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593589791;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:38;a:13:{s:2:\"id\";i:842;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-7.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593590476;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593590476;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:39;a:13:{s:2:\"id\";i:860;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-8.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593591769;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593591769;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:40;a:13:{s:2:\"id\";i:862;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/faqs-9.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1593591814;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/faqs-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"FAQs\";s:4:\"date\";i:1593591814;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:41;a:13:{s:2:\"id\";i:871;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593597714;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593597714;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:34:\"[\"design\",\"development\",\"feature\"]\";s:17:\"has_page_settings\";b:0;}i:42;a:13:{s:2:\"id\";i:1077;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593756173;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593756173;s:10:\"human_date\";s:12:\"July 3, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:43;a:13:{s:2:\"id\";i:893;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593598416;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593598416;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:32:\"[\"features\",\"payment\",\"support\"]\";s:17:\"has_page_settings\";b:0;}i:44;a:13:{s:2:\"id\";i:926;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593601084;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593601084;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:32:\"[\"connection\",\"humor\",\"support\"]\";s:17:\"has_page_settings\";b:0;}i:45;a:13:{s:2:\"id\";i:953;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593603042;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593603042;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:25:\"[\"application\",\"feature\"]\";s:17:\"has_page_settings\";b:0;}i:46;a:13:{s:2:\"id\";i:977;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593604008;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593604008;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:33:\"[\"community\",\"service\",\"support\"]\";s:17:\"has_page_settings\";b:0;}i:47;a:13:{s:2:\"id\";i:996;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593604488;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593604488;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:10:\"[\"videos\"]\";s:17:\"has_page_settings\";b:0;}i:48;a:13:{s:2:\"id\";i:1036;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593677335;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593677335;s:10:\"human_date\";s:12:\"July 2, 2020\";s:4:\"tags\";s:10:\"[\"mockup\"]\";s:17:\"has_page_settings\";b:0;}i:49;a:13:{s:2:\"id\";i:1057;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593745609;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593745609;s:10:\"human_date\";s:12:\"July 3, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:50;a:13:{s:2:\"id\";i:1075;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/feat-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593756101;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Features\";s:4:\"date\";i:1593756101;s:10:\"human_date\";s:12:\"July 3, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:51;a:13:{s:2:\"id\";i:3757;s:5:\"title\";s:13:\"Food Delivery\";s:9:\"thumbnail\";s:86:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/food-delivery-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603715616;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:115:\"https://demo.powerpackelements.com/blocks/food-delivery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603715616;s:10:\"human_date\";s:16:\"October 26, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:52;a:13:{s:2:\"id\";i:3154;s:5:\"title\";s:9:\"Furniture\";s:9:\"thumbnail\";s:87:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/furniture-shop-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603193881;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/furniture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603193881;s:10:\"human_date\";s:16:\"October 20, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:53;a:13:{s:2:\"id\";i:1507;s:5:\"title\";s:9:\"Gallery 1\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-1.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594272929;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594272929;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:54;a:13:{s:2:\"id\";i:1578;s:5:\"title\";s:10:\"Gallery 10\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-10.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594277252;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/gallery-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594277252;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:55;a:13:{s:2:\"id\";i:1510;s:5:\"title\";s:9:\"Gallery 2\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-2.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594272989;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594272989;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:56;a:13:{s:2:\"id\";i:1513;s:5:\"title\";s:9:\"Gallery 3\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-3.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594273026;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594273026;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:57;a:13:{s:2:\"id\";i:1516;s:5:\"title\";s:9:\"Gallery 4\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-4.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594273062;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594273062;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:58;a:13:{s:2:\"id\";i:1519;s:5:\"title\";s:9:\"Gallery 5\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-5.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594274255;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594274255;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:59;a:13:{s:2:\"id\";i:1563;s:5:\"title\";s:9:\"Gallery 7\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-7.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594276146;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594276146;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:60;a:13:{s:2:\"id\";i:1566;s:5:\"title\";s:9:\"Gallery 8\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-8.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594276322;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594276322;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:61;a:13:{s:2:\"id\";i:1569;s:5:\"title\";s:9:\"Gallery 9\";s:9:\"thumbnail\";s:75:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/gallery-9.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594276678;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gallery-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Gallery\";s:4:\"date\";i:1594276678;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:62;a:13:{s:2:\"id\";i:2841;s:5:\"title\";s:9:\"Gardening\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/gardening-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1602822499;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/gardening/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1602822499;s:10:\"human_date\";s:16:\"October 16, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:63;a:13:{s:2:\"id\";i:3377;s:5:\"title\";s:3:\"Gym\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/gym-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603460085;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:105:\"https://demo.powerpackelements.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603460085;s:10:\"human_date\";s:16:\"October 23, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:64;a:13:{s:2:\"id\";i:1623;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594307987;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594307987;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:65;a:13:{s:2:\"id\";i:1626;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308041;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308041;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:66;a:13:{s:2:\"id\";i:1629;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308119;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308119;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:67;a:13:{s:2:\"id\";i:1632;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308161;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308161;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:68;a:13:{s:2:\"id\";i:1635;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308221;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308221;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:69;a:13:{s:2:\"id\";i:2010;s:5:\"title\";s:8:\"Hero 5-1\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-5-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308260;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/hero-5-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308260;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:70;a:13:{s:2:\"id\";i:1641;s:5:\"title\";s:8:\"Hero 6-1\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/hero-6-1-1-scaled.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308308;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/hero-6-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308308;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:71;a:13:{s:2:\"id\";i:2027;s:5:\"title\";s:8:\"Hero 6-2\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-6-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594308710;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:110:\"https://demo.powerpackelements.com/blocks/hero-6-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594308710;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:72;a:13:{s:2:\"id\";i:1645;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Hero-7-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594309312;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594309312;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:17:\"[\"fitness\",\"gym\"]\";s:17:\"has_page_settings\";b:0;}i:73;a:13:{s:2:\"id\";i:1643;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/Home-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594310067;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Hero\";s:4:\"date\";i:1594310067;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:21:\"[\"cafe\",\"restaurant\"]\";s:17:\"has_page_settings\";b:0;}i:74;a:13:{s:2:\"id\";i:2682;s:5:\"title\";s:9:\"Insurance\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/insurance-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603264950;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/insurance/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603264950;s:10:\"human_date\";s:16:\"October 21, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:75;a:13:{s:2:\"id\";i:4920;s:5:\"title\";s:15:\"Interior Design\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/interior-1-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1604563744;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:117:\"https://demo.powerpackelements.com/blocks/interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1604563744;s:10:\"human_date\";s:16:\"November 5, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:76;a:13:{s:2:\"id\";i:3655;s:5:\"title\";s:10:\"Plantation\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/plantation-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603708644;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/plantation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603708644;s:10:\"human_date\";s:16:\"October 26, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:77;a:13:{s:2:\"id\";i:4658;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/portfolio-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605080398;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605080398;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:78;a:13:{s:2:\"id\";i:1088;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594028671;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594028671;s:10:\"human_date\";s:12:\"July 6, 2020\";s:4:\"tags\";s:30:\"[\"maximal\",\"optimal\",\"simple\"]\";s:17:\"has_page_settings\";b:0;}i:79;a:13:{s:2:\"id\";i:1247;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192180;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192180;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:80;a:13:{s:2:\"id\";i:1113;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594120216;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594120216;s:10:\"human_date\";s:12:\"July 7, 2020\";s:4:\"tags\";s:30:\"[\"basic\",\"extreme\",\"standard\"]\";s:17:\"has_page_settings\";b:0;}i:81;a:13:{s:2:\"id\";i:1121;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594120532;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594120532;s:10:\"human_date\";s:12:\"July 7, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:82;a:13:{s:2:\"id\";i:1197;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594178500;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594178500;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:83;a:13:{s:2:\"id\";i:1200;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594178595;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594178595;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:84;a:13:{s:2:\"id\";i:1224;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594190764;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594190764;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:85;a:13:{s:2:\"id\";i:1238;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192052;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192052;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:86;a:13:{s:2:\"id\";i:1241;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192098;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192098;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:17:\"[\"fitness\",\"gym\"]\";s:17:\"has_page_settings\";b:0;}i:87;a:13:{s:2:\"id\";i:1244;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/price-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594192141;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"Pricing\";s:4:\"date\";i:1594192141;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:88;a:13:{s:2:\"id\";i:3879;s:5:\"title\";s:11:\"Real Estate\";s:9:\"thumbnail\";s:84:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/real-estate-scaled.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1603789906;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603789906;s:10:\"human_date\";s:16:\"October 27, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:89;a:13:{s:2:\"id\";i:3262;s:5:\"title\";s:10:\"Restaurant\";s:9:\"thumbnail\";s:83:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/restaurant-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603455979;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603455979;s:10:\"human_date\";s:16:\"October 23, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:90;a:13:{s:2:\"id\";i:1152;s:5:\"title\";s:10:\"Services 1\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594224624;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594224624;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:24:\"[\"design\",\"development\"]\";s:17:\"has_page_settings\";b:0;}i:91;a:13:{s:2:\"id\";i:1500;s:5:\"title\";s:11:\"Services 10\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594264646;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:113:\"https://demo.powerpackelements.com/blocks/services-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594264646;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:92;a:13:{s:2:\"id\";i:1404;s:5:\"title\";s:10:\"Services 2\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594224737;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594224737;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:93;a:13:{s:2:\"id\";i:1421;s:5:\"title\";s:10:\"Services 3\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594225973;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594225973;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:94;a:13:{s:2:\"id\";i:1434;s:5:\"title\";s:10:\"Services 4\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594226407;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594226407;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:24:\"[\"fitness\",\"gym\",\"yoga\"]\";s:17:\"has_page_settings\";b:0;}i:95;a:13:{s:2:\"id\";i:1436;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594226735;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594226735;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:28:\"[\"cafe\",\"food\",\"restaurant\"]\";s:17:\"has_page_settings\";b:0;}i:96;a:13:{s:2:\"id\";i:1452;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594228175;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594228175;s:10:\"human_date\";s:12:\"July 8, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:97;a:13:{s:2:\"id\";i:1491;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594263703;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594263703;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:28:\"[\"construction\",\"gardening\"]\";s:17:\"has_page_settings\";b:0;}i:98;a:13:{s:2:\"id\";i:1494;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594264101;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594264101;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:99;a:13:{s:2:\"id\";i:1497;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/services-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594264578;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:112:\"https://demo.powerpackelements.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"Services\";s:4:\"date\";i:1594264578;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:100;a:13:{s:2:\"id\";i:2542;s:5:\"title\";s:9:\"Ski Board\";s:9:\"thumbnail\";s:82:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/ski-board-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603264950;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:111:\"https://demo.powerpackelements.com/blocks/ski-board/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603264950;s:10:\"human_date\";s:16:\"October 21, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:101;a:13:{s:2:\"id\";i:8025;s:5:\"title\";s:22:\"Solar Renewable Energy\";s:9:\"thumbnail\";s:88:\"https://demo.powerpackelements.com/wp-content/uploads/2023/08/solar-renewable-energy.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1691131587;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:124:\"https://demo.powerpackelements.com/blocks/solar-renewable-energy/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1691131587;s:10:\"human_date\";s:14:\"August 4, 2023\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:102;a:13:{s:2:\"id\";i:351;s:5:\"title\";s:6:\"Team 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593513600;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593513600;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:103;a:13:{s:2:\"id\";i:2132;s:5:\"title\";s:7:\"Team 10\";s:9:\"thumbnail\";s:73:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-10.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593574846;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:109:\"https://demo.powerpackelements.com/blocks/team-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593574846;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:104;a:13:{s:2:\"id\";i:650;s:5:\"title\";s:6:\"Team 2\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-2-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593513713;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593513713;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:8:\"[\"team\"]\";s:17:\"has_page_settings\";b:0;}i:105;a:13:{s:2:\"id\";i:669;s:5:\"title\";s:6:\"Team 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-3.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593514965;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593514965;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:8:\"[\"team\"]\";s:17:\"has_page_settings\";b:0;}i:106;a:13:{s:2:\"id\";i:691;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-4.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593535377;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593535377;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:107;a:13:{s:2:\"id\";i:693;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-5.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593535502;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593535502;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:108;a:13:{s:2:\"id\";i:704;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/06/team-6.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593536440;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593536440;s:10:\"human_date\";s:13:\"June 30, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:109;a:13:{s:2:\"id\";i:716;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593572634;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593572634;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:110;a:13:{s:2:\"id\";i:719;s:5:\"title\";s:6:\"Team 8\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-8.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593572685;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593572685;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:111;a:13:{s:2:\"id\";i:733;s:5:\"title\";s:6:\"Team 9\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/team-9.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1593574188;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/team-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"Team\";s:4:\"date\";i:1593574188;s:10:\"human_date\";s:12:\"July 1, 2020\";s:4:\"tags\";s:17:\"[\"gym\",\"trainer\"]\";s:17:\"has_page_settings\";b:0;}i:112;a:13:{s:2:\"id\";i:1584;s:5:\"title\";s:14:\"Testimonials 1\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594277576;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594277576;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:113;a:13:{s:2:\"id\";i:1591;s:5:\"title\";s:14:\"Testimonials 2\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-2.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594278034;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594278034;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:114;a:13:{s:2:\"id\";i:1594;s:5:\"title\";s:14:\"Testimonials 3\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-3.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594280248;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594280248;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:115;a:13:{s:2:\"id\";i:1607;s:5:\"title\";s:14:\"Testimonials 4\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-4.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594280407;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594280407;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:116;a:13:{s:2:\"id\";i:1610;s:5:\"title\";s:14:\"Testimonials 5\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-5-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594280740;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594280740;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:117;a:13:{s:2:\"id\";i:1612;s:5:\"title\";s:14:\"Testimonials 6\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-6.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1594281008;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594281008;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:118;a:13:{s:2:\"id\";i:1615;s:5:\"title\";s:14:\"Testimonials 7\";s:9:\"thumbnail\";s:72:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-7.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594281415;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594281415;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:119;a:13:{s:2:\"id\";i:1963;s:5:\"title\";s:14:\"Testimonials 8\";s:9:\"thumbnail\";s:74:\"https://demo.powerpackelements.com/wp-content/uploads/2020/07/test-7-1.jpg\";s:6:\"is_pro\";b:0;s:12:\"tmpl_created\";i:1594281722;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:116:\"https://demo.powerpackelements.com/blocks/testimonials-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"Testimonials\";s:4:\"date\";i:1594281722;s:10:\"human_date\";s:12:\"July 9, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:120;a:13:{s:2:\"id\";i:2975;s:5:\"title\";s:6:\"Travel\";s:9:\"thumbnail\";s:88:\"https://demo.powerpackelements.com/wp-content/uploads/2020/10/travel-template-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1603096139;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:108:\"https://demo.powerpackelements.com/blocks/travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1603096139;s:10:\"human_date\";s:16:\"October 19, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:121;a:13:{s:2:\"id\";i:4780;s:5:\"title\";s:13:\"Travel Agency\";s:9:\"thumbnail\";s:86:\"https://demo.powerpackelements.com/wp-content/uploads/2020/11/travel-agency-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1605080920;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:115:\"https://demo.powerpackelements.com/blocks/travel-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1605080920;s:10:\"human_date\";s:17:\"November 11, 2020\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}i:122;a:13:{s:2:\"id\";i:5286;s:5:\"title\";s:4:\"Yoga\";s:9:\"thumbnail\";s:77:\"https://demo.powerpackelements.com/wp-content/uploads/2021/03/yoga-scaled.jpg\";s:6:\"is_pro\";b:1;s:12:\"tmpl_created\";i:1616737750;s:6:\"author\";s:18:\"PowerPack Elements\";s:3:\"url\";s:106:\"https://demo.powerpackelements.com/blocks/yoga/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:0:\"\";s:4:\"date\";i:1616737750;s:10:\"human_date\";s:14:\"March 26, 2021\";s:4:\"tags\";s:2:\"[]\";s:17:\"has_page_settings\";b:0;}}}', 'off');
INSERT INTO `wpe_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2274, 'elementor_atomic_cache_validity__template-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:9:{i:66;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:377;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:12;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:16;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:14;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:18;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:20;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:22;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:36;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}}}', 'off'),
(2275, 'elementor_atomic_cache_validity__base', 'a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5037f5ce67e\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}', 'off'),
(2276, 'elementor_atomic_cache_validity__global', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:9:{i:66;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5037f5ce995\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:377;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5037f5cebbd\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:12;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5037f5cee09\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:16;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5038272fdf0\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:14;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a50382a59ef6\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:18;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5038432a297\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:20;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a5038575ae6f\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:22;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a503865f0fdb\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}i:36;a:2:{s:5:\"state\";b:0;s:8:\"children\";a:1:{s:8:\"frontend\";a:3:{s:5:\"state\";b:1;s:4:\"meta\";s:13:\"6a503875b7d63\";s:8:\"children\";a:6:{s:7:\"desktop\";b:1;s:10:\"widescreen\";b:1;s:12:\"tablet_extra\";b:1;s:6:\"tablet\";b:1;s:12:\"mobile_extra\";b:1;s:6:\"mobile\";b:1;}}}}}}', 'off'),
(907, '_transient_health-check-site-status-result', '{\"good\":24,\"recommended\":2,\"critical\":1}', 'on');

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

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

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

--
-- Dumping data for table `wpe_postmeta`
--

INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(6, 7, '_elementor_template_type', 'kit'),
(5, 7, '_elementor_edit_mode', 'builder'),
(12, 3, '_wp_trash_meta_time', '1783229102'),
(13, 3, '_wp_desired_post_slug', 'privacy-policy'),
(11, 3, '_wp_trash_meta_status', 'draft'),
(14, 2, '_wp_trash_meta_status', 'publish'),
(15, 2, '_wp_trash_meta_time', '1783229102'),
(16, 2, '_wp_desired_post_slug', 'sample-page'),
(17, 12, '_edit_last', '1'),
(18, 12, '_edit_lock', '1783544126:1'),
(19, 12, '_wp_page_template', 'elementor_header_footer'),
(20, 12, 'site-sidebar-layout', 'no-sidebar'),
(25, 12, 'theme-transparent-header-meta', 'default'),
(22, 12, 'ast-site-content-layout', 'full-width-container'),
(23, 12, 'site-content-style', 'default'),
(24, 12, 'site-sidebar-style', 'default'),
(26, 12, 'astra-migrate-meta-layouts', 'set'),
(27, 14, '_edit_last', '1'),
(28, 14, '_wp_page_template', 'elementor_header_footer'),
(29, 14, 'site-sidebar-layout', 'no-sidebar'),
(34, 14, 'theme-transparent-header-meta', 'default'),
(31, 14, 'ast-site-content-layout', 'full-width-container'),
(32, 14, 'site-content-style', 'default'),
(33, 14, 'site-sidebar-style', 'default'),
(37, 14, 'astra-migrate-meta-layouts', 'set'),
(36, 14, '_edit_lock', '1783543399:1'),
(38, 16, '_edit_last', '1'),
(39, 16, '_edit_lock', '1783545264:1'),
(40, 16, '_wp_page_template', 'default'),
(41, 16, 'site-sidebar-layout', 'no-sidebar'),
(46, 16, 'theme-transparent-header-meta', 'default'),
(43, 16, 'ast-site-content-layout', 'full-width-container'),
(44, 16, 'site-content-style', 'default'),
(45, 16, 'site-sidebar-style', 'default'),
(47, 16, 'astra-migrate-meta-layouts', 'set'),
(48, 18, '_edit_last', '1'),
(49, 18, '_wp_page_template', 'default'),
(50, 18, 'site-sidebar-layout', 'no-sidebar'),
(55, 18, 'theme-transparent-header-meta', 'default'),
(52, 18, 'ast-site-content-layout', 'full-width-container'),
(53, 18, 'site-content-style', 'default'),
(54, 18, 'site-sidebar-style', 'default'),
(56, 18, 'astra-migrate-meta-layouts', 'set'),
(57, 18, '_edit_lock', '1783512035:1'),
(58, 20, '_edit_last', '1'),
(59, 20, '_wp_page_template', 'elementor_header_footer'),
(60, 20, 'site-sidebar-layout', 'no-sidebar'),
(65, 20, 'theme-transparent-header-meta', 'default'),
(62, 20, 'ast-site-content-layout', 'full-width-container'),
(63, 20, 'site-content-style', 'default'),
(64, 20, 'site-sidebar-style', 'default'),
(66, 20, 'astra-migrate-meta-layouts', 'set'),
(67, 20, '_edit_lock', '1783512180:1'),
(68, 22, '_edit_last', '1'),
(69, 22, '_edit_lock', '1783544131:1'),
(70, 22, '_wp_page_template', 'default'),
(71, 22, 'site-sidebar-layout', 'no-sidebar'),
(76, 22, 'theme-transparent-header-meta', 'default'),
(73, 22, 'ast-site-content-layout', 'full-width-container'),
(74, 22, 'site-content-style', 'default'),
(75, 22, 'site-sidebar-style', 'default'),
(77, 22, 'astra-migrate-meta-layouts', 'set'),
(78, 24, '_edit_last', '1'),
(79, 24, '_wp_page_template', 'default'),
(80, 24, 'site-sidebar-layout', 'no-sidebar'),
(85, 24, 'theme-transparent-header-meta', 'default'),
(82, 24, 'ast-site-content-layout', 'full-width-container'),
(83, 24, 'site-content-style', 'default'),
(84, 24, 'site-sidebar-style', 'default'),
(10975, 24, 'astra-migrate-meta-layouts', 'set'),
(87, 24, '_edit_lock', '1783545278:1'),
(88, 26, '_edit_last', '1'),
(89, 26, '_edit_lock', '1783512275:1'),
(90, 26, '_wp_page_template', 'elementor_header_footer'),
(91, 26, 'site-sidebar-layout', 'no-sidebar'),
(96, 26, 'theme-transparent-header-meta', 'default'),
(93, 26, 'ast-site-content-layout', 'full-width-container'),
(94, 26, 'site-content-style', 'default'),
(95, 26, 'site-sidebar-style', 'default'),
(97, 26, 'astra-migrate-meta-layouts', 'set'),
(98, 28, '_menu_item_type', 'post_type'),
(99, 28, '_menu_item_menu_item_parent', '33'),
(100, 28, '_menu_item_object_id', '26'),
(101, 28, '_menu_item_object', 'page'),
(102, 28, '_menu_item_target', ''),
(103, 28, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(104, 28, '_menu_item_xfn', ''),
(105, 28, '_menu_item_url', ''),
(170, 36, '_edit_last', '1'),
(107, 29, '_menu_item_type', 'post_type'),
(108, 29, '_menu_item_menu_item_parent', '33'),
(109, 29, '_menu_item_object_id', '24'),
(110, 29, '_menu_item_object', 'page'),
(111, 29, '_menu_item_target', ''),
(112, 29, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(113, 29, '_menu_item_xfn', ''),
(114, 29, '_menu_item_url', ''),
(171, 36, '_edit_lock', '1783542526:1'),
(116, 30, '_menu_item_type', 'post_type'),
(117, 30, '_menu_item_menu_item_parent', '33'),
(118, 30, '_menu_item_object_id', '22'),
(119, 30, '_menu_item_object', 'page'),
(120, 30, '_menu_item_target', ''),
(121, 30, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(122, 30, '_menu_item_xfn', ''),
(123, 30, '_menu_item_url', ''),
(172, 36, '_wp_page_template', 'elementor_header_footer'),
(125, 31, '_menu_item_type', 'post_type'),
(126, 31, '_menu_item_menu_item_parent', '33'),
(127, 31, '_menu_item_object_id', '20'),
(128, 31, '_menu_item_object', 'page'),
(129, 31, '_menu_item_target', ''),
(130, 31, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(131, 31, '_menu_item_xfn', ''),
(132, 31, '_menu_item_url', ''),
(134, 32, '_menu_item_type', 'post_type'),
(135, 32, '_menu_item_menu_item_parent', '33'),
(136, 32, '_menu_item_object_id', '18'),
(137, 32, '_menu_item_object', 'page'),
(138, 32, '_menu_item_target', ''),
(139, 32, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(140, 32, '_menu_item_xfn', ''),
(141, 32, '_menu_item_url', ''),
(173, 36, 'site-sidebar-layout', 'no-sidebar'),
(143, 33, '_menu_item_type', 'post_type'),
(144, 33, '_menu_item_menu_item_parent', '0'),
(145, 33, '_menu_item_object_id', '16'),
(146, 33, '_menu_item_object', 'page'),
(147, 33, '_menu_item_target', ''),
(148, 33, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(149, 33, '_menu_item_xfn', ''),
(150, 33, '_menu_item_url', ''),
(178, 36, 'theme-transparent-header-meta', 'default'),
(152, 34, '_menu_item_type', 'post_type'),
(153, 34, '_menu_item_menu_item_parent', '0'),
(154, 34, '_menu_item_object_id', '14'),
(155, 34, '_menu_item_object', 'page'),
(156, 34, '_menu_item_target', ''),
(157, 34, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(158, 34, '_menu_item_xfn', ''),
(159, 34, '_menu_item_url', ''),
(175, 36, 'ast-site-content-layout', 'full-width-container'),
(161, 35, '_menu_item_type', 'post_type'),
(162, 35, '_menu_item_menu_item_parent', '0'),
(163, 35, '_menu_item_object_id', '12'),
(164, 35, '_menu_item_object', 'page'),
(165, 35, '_menu_item_target', ''),
(166, 35, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(167, 35, '_menu_item_xfn', ''),
(168, 35, '_menu_item_url', ''),
(176, 36, 'site-content-style', 'default'),
(177, 36, 'site-sidebar-style', 'default'),
(179, 36, 'astra-migrate-meta-layouts', 'set'),
(180, 38, '_menu_item_type', 'post_type'),
(181, 38, '_menu_item_menu_item_parent', '0'),
(182, 38, '_menu_item_object_id', '36'),
(183, 38, '_menu_item_object', 'page'),
(184, 38, '_menu_item_target', ''),
(185, 38, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(186, 38, '_menu_item_xfn', ''),
(187, 38, '_menu_item_url', ''),
(189, 39, '_elementor_edit_mode', 'builder'),
(190, 39, '_elementor_template_type', 'kit'),
(191, 7, '_wp_page_template', 'default'),
(192, 7, '_elementor_page_settings', 'a:22:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:33:\"Everwell Longevity &amp; Wellness\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:90:\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\";s:2:\"id\";i:53;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:94:\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-faveicon.png\";s:2:\"id\";i:52;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i: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;}'),
(193, 12, '_elementor_edit_mode', 'builder'),
(194, 12, '_astra_content_layout_flag', 'disabled'),
(196, 12, 'ast-title-bar-display', 'disabled'),
(197, 12, 'ast-featured-img', 'disabled'),
(198, 12, '_elementor_template_type', 'wp-page'),
(199, 12, '_elementor_version', '4.1.4'),
(200, 12, '_elementor_pro_version', '4.1.2');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(245, 12, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(202, 12, '_elementor_global_class_usage_indexed', '1'),
(203, 12, '_elementor_global_class_usage_indexed_preview', '1'),
(204, 12, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(222, 7, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(223, 7, '_elementor_global_classes_labels', 'a:0:{}'),
(208, 7, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(209, 7, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(246, 43, '_wp_page_template', 'elementor_header_footer'),
(224, 7, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(225, 41, '_wp_page_template', 'elementor_header_footer'),
(226, 41, '_elementor_edit_mode', 'builder'),
(227, 41, '_elementor_template_type', 'wp-page'),
(228, 41, '_elementor_version', '4.1.4'),
(229, 41, '_elementor_pro_version', '4.1.2'),
(230, 41, '_elementor_page_settings', 'a:0:{}'),
(231, 41, '_elementor_global_class_usage_indexed', '1'),
(232, 41, '_elementor_global_class_usage_indexed_preview', '1'),
(233, 41, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(235, 42, '_wp_page_template', 'elementor_header_footer'),
(236, 42, '_elementor_edit_mode', 'builder'),
(237, 42, '_elementor_template_type', 'wp-page'),
(238, 42, '_elementor_version', '4.1.4'),
(239, 42, '_elementor_pro_version', '4.1.2'),
(240, 42, '_elementor_page_settings', 'a:0:{}'),
(241, 42, '_elementor_global_class_usage_indexed', '1'),
(242, 42, '_elementor_global_class_usage_indexed_preview', '1'),
(243, 42, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(247, 43, '_elementor_edit_mode', 'builder'),
(248, 43, '_elementor_template_type', 'wp-page'),
(249, 43, '_elementor_version', '4.1.4'),
(250, 43, '_elementor_pro_version', '4.1.2'),
(251, 43, '_elementor_global_class_usage_indexed', '1'),
(252, 43, '_elementor_global_class_usage_indexed_preview', '1'),
(253, 43, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(255, 43, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(258, 44, '_wp_page_template', 'elementor_header_footer'),
(259, 44, '_elementor_edit_mode', 'builder'),
(260, 44, '_elementor_template_type', 'wp-page'),
(261, 44, '_elementor_version', '4.1.4'),
(262, 44, '_elementor_pro_version', '4.1.2'),
(263, 44, '_elementor_global_class_usage_indexed', '1'),
(264, 44, '_elementor_global_class_usage_indexed_preview', '1'),
(265, 44, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(569, 73, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5c9012\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(267, 44, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(268, 44, '_elementor_page_settings', 'a:0:{}'),
(269, 45, '_wp_page_template', 'elementor_header_footer'),
(270, 45, '_elementor_edit_mode', 'builder'),
(271, 45, '_elementor_template_type', 'wp-page'),
(272, 45, '_elementor_version', '4.1.4'),
(273, 45, '_elementor_pro_version', '4.1.2'),
(274, 45, '_elementor_global_class_usage_indexed', '1'),
(275, 45, '_elementor_global_class_usage_indexed_preview', '1'),
(276, 45, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(364, 7, '_elementor_global_class_usage_indexed', '1'),
(278, 45, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(279, 45, '_elementor_page_settings', 'a:0:{}'),
(280, 46, '_wp_page_template', 'elementor_header_footer'),
(281, 46, '_elementor_edit_mode', 'builder'),
(282, 46, '_elementor_template_type', 'wp-page'),
(283, 46, '_elementor_version', '4.1.4'),
(284, 46, '_elementor_pro_version', '4.1.2'),
(285, 46, '_elementor_global_class_usage_indexed', '1'),
(286, 46, '_elementor_global_class_usage_indexed_preview', '1'),
(287, 46, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(365, 7, '_elementor_global_class_usage_indexed_preview', '1'),
(289, 46, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(296, 47, '_wp_page_template', 'elementor_header_footer'),
(297, 47, '_elementor_edit_mode', 'builder'),
(298, 47, '_elementor_template_type', 'wp-page'),
(299, 47, '_elementor_version', '4.1.4'),
(300, 47, '_elementor_pro_version', '4.1.2'),
(301, 47, '_elementor_global_class_usage_indexed', '1'),
(302, 47, '_elementor_global_class_usage_indexed_preview', '1'),
(303, 47, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(304, 47, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(407, 57, '_wp_page_template', 'elementor_header_footer'),
(408, 57, '_elementor_edit_mode', 'builder'),
(409, 57, '_elementor_template_type', 'wp-page'),
(410, 57, '_elementor_version', '4.1.4'),
(411, 57, '_elementor_pro_version', '4.1.2'),
(412, 57, '_elementor_global_class_usage_indexed', '1'),
(413, 57, '_elementor_global_class_usage_indexed_preview', '1'),
(414, 57, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(415, 57, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5c9012\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(305, 47, '_elementor_page_settings', 'a:0:{}'),
(561, 73, '_wp_page_template', 'elementor_header_footer'),
(562, 73, '_elementor_edit_mode', 'builder'),
(563, 73, '_elementor_template_type', 'wp-page'),
(564, 73, '_elementor_version', '4.1.4'),
(565, 73, '_elementor_pro_version', '4.1.2'),
(566, 73, '_elementor_global_class_usage_indexed', '1'),
(567, 73, '_elementor_global_class_usage_indexed_preview', '1'),
(568, 73, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(645, 79, '_wp_page_template', 'elementor_header_footer'),
(646, 79, '_elementor_edit_mode', 'builder'),
(647, 79, '_elementor_template_type', 'wp-page'),
(648, 79, '_elementor_version', '4.1.4'),
(649, 79, '_elementor_pro_version', '4.1.2'),
(650, 79, '_elementor_global_class_usage_indexed', '1'),
(651, 79, '_elementor_global_class_usage_indexed_preview', '1'),
(652, 79, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(653, 79, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(309, 48, '_wp_page_template', 'elementor_header_footer'),
(310, 48, '_elementor_edit_mode', 'builder'),
(311, 48, '_elementor_template_type', 'wp-page'),
(312, 48, '_elementor_version', '4.1.4'),
(313, 48, '_elementor_pro_version', '4.1.2'),
(314, 48, '_elementor_global_class_usage_indexed', '1'),
(315, 48, '_elementor_global_class_usage_indexed_preview', '1'),
(316, 48, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(317, 48, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(318, 48, '_elementor_page_settings', 'a:0:{}'),
(386, 55, '_elementor_edit_mode', 'builder'),
(387, 55, '_elementor_template_type', 'kit'),
(388, 55, '_wp_page_template', 'default'),
(389, 55, '_elementor_page_settings', 'a:16:{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:33:\"Everwell Longevity &amp; Wellness\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:90:\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\";s:2:\"id\";i:53;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:94:\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-faveicon.png\";s:2:\"id\";i:52;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1240;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(390, 55, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(391, 55, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(392, 55, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(393, 55, '_elementor_global_classes_labels', 'a:0:{}'),
(394, 55, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(395, 55, '_elementor_data', '[]'),
(396, 55, '_elementor_version', '4.1.4'),
(397, 55, '_elementor_pro_version', '4.1.2'),
(398, 55, '_elementor_global_class_usage_indexed', '1'),
(399, 55, '_elementor_global_class_usage_indexed_preview', '1'),
(322, 49, '_wp_page_template', 'elementor_header_footer'),
(323, 49, '_elementor_edit_mode', 'builder'),
(324, 49, '_elementor_template_type', 'wp-page'),
(325, 49, '_elementor_version', '4.1.4'),
(326, 49, '_elementor_pro_version', '4.1.2'),
(327, 49, '_elementor_global_class_usage_indexed', '1'),
(328, 49, '_elementor_global_class_usage_indexed_preview', '1'),
(329, 49, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(330, 49, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5c9012\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(367, 52, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:281;s:6:\"height\";i:271;s:4:\"file\";s:48:\"2026/07/Everwell-Longevity-Wellness-faveicon.png\";s:8:\"filesize\";i:63329;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Everwell-Longevity-Wellness-faveicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19423;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(368, 53, '_wp_attached_file', '2026/07/Everwell-Longevity-Wellness-logo.png'),
(369, 53, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:605;s:6:\"height\";i:472;s:4:\"file\";s:44:\"2026/07/Everwell-Longevity-Wellness-logo.png\";s:8:\"filesize\";i:165932;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Everwell-Longevity-Wellness-logo-300x234.png\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Everwell-Longevity-Wellness-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20639;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(371, 54, '_elementor_edit_mode', 'builder'),
(372, 54, '_elementor_template_type', 'kit'),
(373, 54, '_wp_page_template', 'default'),
(374, 54, '_elementor_page_settings', 'a:14:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:33:\"Everwell Longevity &amp; Wellness\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:90:\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\";s:2:\"id\";i:53;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:94:\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-faveicon.png\";s:2:\"id\";i:52;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}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;}'),
(375, 54, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(376, 54, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(377, 54, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(378, 54, '_elementor_global_classes_labels', 'a:0:{}'),
(379, 54, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(380, 54, '_elementor_data', '[]'),
(381, 54, '_elementor_version', '4.1.4'),
(382, 54, '_elementor_pro_version', '4.1.2'),
(383, 54, '_elementor_global_class_usage_indexed', '1'),
(384, 54, '_elementor_global_class_usage_indexed_preview', '1'),
(338, 7, '_edit_lock', '1783233323:1'),
(339, 50, '_elementor_edit_mode', 'builder'),
(340, 50, '_elementor_template_type', 'kit'),
(341, 50, '_wp_page_template', 'default'),
(342, 50, '_elementor_page_settings', 'a:1:{s:16:\"site_description\";s:7:\"Welcome\";}'),
(343, 50, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(344, 50, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(345, 50, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(346, 50, '_elementor_global_classes_labels', 'a:0:{}'),
(347, 50, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(349, 7, '_elementor_data', '[]'),
(350, 51, '_elementor_edit_mode', 'builder'),
(351, 51, '_elementor_template_type', 'kit'),
(352, 51, '_wp_page_template', 'default'),
(353, 51, '_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:33:\"Everwell Longevity &amp; Wellness\";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;}'),
(354, 51, '_elementor_global_classes_order_preview', 'a:1:{s:5:\"order\";a:0:{}}'),
(355, 51, '_elementor_global_classes_labels_preview', 'a:0:{}'),
(356, 51, '_elementor_global_classes_order', 'a:1:{s:5:\"order\";a:0:{}}'),
(357, 51, '_elementor_global_classes_labels', 'a:0:{}'),
(358, 51, '_elementor_global_classes_sync_to_v3', 'a:0:{}'),
(360, 51, '_elementor_data', '[]'),
(366, 52, '_wp_attached_file', '2026/07/Everwell-Longevity-Wellness-faveicon.png'),
(362, 7, '_elementor_version', '4.1.4'),
(363, 7, '_elementor_pro_version', '4.1.2'),
(416, 57, '_elementor_page_settings', 'a:0:{}'),
(420, 58, '_wp_page_template', 'elementor_header_footer'),
(421, 58, '_elementor_edit_mode', 'builder'),
(422, 58, '_elementor_template_type', 'wp-page'),
(423, 58, '_elementor_version', '4.1.4'),
(424, 58, '_elementor_pro_version', '4.1.2');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(425, 58, '_elementor_global_class_usage_indexed', '1'),
(426, 58, '_elementor_global_class_usage_indexed_preview', '1'),
(427, 58, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(428, 58, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}]},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5c9012\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(429, 58, '_elementor_page_settings', 'a:0:{}'),
(433, 59, '_wp_page_template', 'elementor_header_footer'),
(434, 59, '_elementor_edit_mode', 'builder'),
(435, 59, '_elementor_template_type', 'wp-page'),
(436, 59, '_elementor_version', '4.1.4'),
(437, 59, '_elementor_pro_version', '4.1.2'),
(438, 59, '_elementor_global_class_usage_indexed', '1'),
(439, 59, '_elementor_global_class_usage_indexed_preview', '1'),
(440, 59, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(441, 59, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5c9012\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(603, 76, '_wp_page_template', 'elementor_header_footer'),
(604, 76, '_elementor_edit_mode', 'builder'),
(605, 76, '_elementor_template_type', 'wp-page'),
(606, 76, '_elementor_version', '4.1.4'),
(607, 76, '_elementor_pro_version', '4.1.2'),
(608, 76, '_elementor_global_class_usage_indexed', '1'),
(609, 76, '_elementor_global_class_usage_indexed_preview', '1'),
(610, 76, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(611, 76, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(449, 60, '_edit_lock', '1783234993:1'),
(450, 60, '_wp_trash_meta_status', 'publish'),
(451, 60, '_wp_trash_meta_time', '1783235013'),
(452, 61, '_edit_lock', '1783235073:1'),
(453, 61, '_wp_trash_meta_status', 'publish'),
(454, 61, '_wp_trash_meta_time', '1783235077'),
(455, 62, '_edit_lock', '1783235261:1'),
(456, 62, '_wp_trash_meta_status', 'publish'),
(457, 62, '_wp_trash_meta_time', '1783235292'),
(458, 63, '_wp_trash_meta_status', 'publish'),
(459, 63, '_wp_trash_meta_time', '1783235326'),
(460, 64, '_edit_lock', '1783235382:1'),
(461, 64, '_wp_trash_meta_status', 'publish'),
(462, 64, '_wp_trash_meta_time', '1783235386'),
(463, 65, '_wp_trash_meta_status', 'publish'),
(464, 65, '_wp_trash_meta_time', '1783235413'),
(465, 66, '_elementor_source', 'post'),
(466, 66, '_elementor_edit_mode', 'builder'),
(467, 66, '_elementor_template_type', 'header'),
(468, 66, '_elementor_version', '4.1.4'),
(469, 66, '_elementor_pro_version', '4.1.2'),
(470, 66, '_elementor_global_class_usage_indexed', '1'),
(471, 66, '_elementor_global_class_usage_indexed_preview', '1'),
(472, 66, '_astra_content_layout_flag', 'disabled'),
(474, 66, 'ast-title-bar-display', 'disabled'),
(475, 66, 'ast-featured-img', 'disabled'),
(476, 66, 'ast-site-content-layout', 'full-width-container'),
(477, 66, 'site-sidebar-layout', 'no-sidebar'),
(510, 66, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#393939\",\"color_menu_item_hover\":\"#294c4e\",\"color_menu_item_active\":\"#294c4e\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#bd9066\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#294c4e\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#294c4e\",\"toggle_color\":\"#393939\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#393939\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#393939\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#393939\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#CE9F72\",\"close_icon_color_hover\":\"#393939\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(255, 255, 255, 0.10196078431372549)\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"min_height_mobile\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(479, 66, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(480, 66, '_edit_lock', '1783518563:1'),
(481, 67, '_elementor_edit_mode', 'builder'),
(482, 67, '_elementor_template_type', 'header'),
(483, 67, '_elementor_version', '4.1.4'),
(484, 67, '_elementor_pro_version', '4.1.2'),
(485, 67, '_elementor_page_settings', 'a:0:{}'),
(486, 67, '_elementor_global_class_usage_indexed', '1'),
(487, 67, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(488, 67, '_elementor_data', '[{\"id\":\"185370ba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"379402dc\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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\":\"3adb0a7e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@trulypatiencehomecare.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@trulypatiencehomecare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70bc2a74\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"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\":\"1660e256\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bc61f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"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\":\"bcf510f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"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\":\"75f73f99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"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\":\"4614abfb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"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\":\"8dfccf6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"toggle_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"400f7e0d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_shortcode_name\":\"\",\"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_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"7fea384d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"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\":\"theme-page-title\"}],\"isInner\":false}]'),
(489, 68, '_elementor_edit_mode', 'builder'),
(490, 68, '_elementor_template_type', 'header'),
(491, 68, '_elementor_version', '4.1.4'),
(492, 68, '_elementor_pro_version', '4.1.2'),
(493, 68, '_elementor_page_settings', 'a:0:{}'),
(494, 68, '_elementor_global_class_usage_indexed', '1'),
(495, 68, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(496, 68, '_elementor_data', '[{\"id\":\"185370ba\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"379402dc\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"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\":\"3adb0a7e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@trulypatiencehomecare.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@trulypatiencehomecare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"70bc2a74\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"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\":\"1660e256\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bc61f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"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\":\"bcf510f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"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\":\"75f73f99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":223,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"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\":\"4614abfb\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"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\":\"8dfccf6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"submenu_icon\":{\"value\":\"fas fa-caret-down\",\"library\":\"fa-solid\"},\"toggle_icon\":{\"value\":\"fas fa-bars\",\"library\":\"fa-solid\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"400f7e0d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_shortcode_name\":\"\",\"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_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"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\":\"7fea384d\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_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\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"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_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"},\"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\":\"theme-page-title\"}],\"isInner\":false}]'),
(499, 67, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(500, 69, '_elementor_source', 'post'),
(501, 69, '_elementor_edit_mode', 'builder'),
(502, 69, '_elementor_template_type', 'header'),
(503, 69, '_elementor_version', '4.1.4'),
(504, 69, '_elementor_pro_version', '4.1.2'),
(505, 69, '_elementor_global_class_usage_indexed', '1'),
(506, 69, '_elementor_global_class_usage_indexed_preview', '1'),
(507, 69, '_elementor_page_settings', 'a:0:{}'),
(508, 69, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(509, 66, '_wp_page_template', 'default'),
(511, 70, '_elementor_source', 'post'),
(512, 70, '_elementor_edit_mode', 'builder'),
(513, 70, '_elementor_template_type', 'header'),
(514, 70, '_elementor_version', '4.1.4'),
(515, 70, '_elementor_pro_version', '4.1.2'),
(516, 70, '_elementor_global_class_usage_indexed', '1'),
(517, 70, '_elementor_global_class_usage_indexed_preview', '1'),
(518, 70, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(519, 70, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(520, 70, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@trulypatiencehomecare.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@trulypatiencehomecare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(525, 71, '_elementor_source', 'post'),
(526, 71, '_elementor_edit_mode', 'builder'),
(527, 71, '_elementor_template_type', 'header'),
(528, 71, '_elementor_version', '4.1.4'),
(529, 71, '_elementor_pro_version', '4.1.2'),
(530, 71, '_elementor_global_class_usage_indexed', '1'),
(531, 71, '_elementor_global_class_usage_indexed_preview', '1'),
(532, 71, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(533, 71, '_wp_page_template', 'default'),
(534, 71, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@trulypatiencehomecare.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@trulypatiencehomecare.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(524, 66, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(536, 71, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(543, 72, '_elementor_source', 'post'),
(544, 72, '_elementor_edit_mode', 'builder'),
(545, 72, '_elementor_template_type', 'header'),
(546, 72, '_elementor_version', '4.1.4'),
(547, 72, '_elementor_pro_version', '4.1.2'),
(548, 72, '_elementor_global_class_usage_indexed', '1'),
(549, 72, '_elementor_global_class_usage_indexed_preview', '1'),
(550, 72, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(551, 72, '_wp_page_template', 'default'),
(552, 72, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(540, 16, '_elementor_global_class_usage_indexed', '1'),
(4124, 372, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4127, 373, '_elementor_source', 'post'),
(4268, 384, '_elementor_pro_version', '4.1.2'),
(4269, 384, '_elementor_global_class_usage_indexed', '1'),
(4034, 367, '_elementor_source', 'post'),
(4035, 367, '_elementor_edit_mode', 'builder'),
(4036, 367, '_elementor_template_type', 'header'),
(4037, 367, '_elementor_version', '4.1.4'),
(4038, 367, '_elementor_pro_version', '4.1.2'),
(4039, 367, '_elementor_global_class_usage_indexed', '1'),
(4040, 367, '_elementor_global_class_usage_indexed_preview', '1'),
(4041, 367, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4042, 367, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4043, 367, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor2\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(554, 72, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4097, 371, '_elementor_source', 'post'),
(4098, 371, '_elementor_edit_mode', 'builder'),
(4099, 371, '_elementor_template_type', 'header'),
(4100, 371, '_elementor_version', '4.1.4'),
(4101, 371, '_elementor_pro_version', '4.1.2'),
(4102, 371, '_elementor_global_class_usage_indexed', '1'),
(4103, 371, '_elementor_global_class_usage_indexed_preview', '1'),
(4104, 371, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4105, 371, '_wp_page_template', 'default'),
(4106, 371, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(571, 73, '_elementor_page_settings', 'a:0:{}'),
(574, 74, '_wp_page_template', 'elementor_header_footer'),
(575, 74, '_elementor_edit_mode', 'builder'),
(576, 74, '_elementor_template_type', 'wp-page'),
(577, 74, '_elementor_version', '4.1.4'),
(578, 74, '_elementor_pro_version', '4.1.2'),
(579, 74, '_elementor_global_class_usage_indexed', '1'),
(580, 74, '_elementor_global_class_usage_indexed_preview', '1'),
(581, 74, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(582, 74, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}]},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0ad4fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d5c9012\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h3\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(584, 74, '_elementor_page_settings', 'a:0:{}'),
(587, 75, '_wp_page_template', 'elementor_header_footer'),
(588, 75, '_elementor_edit_mode', 'builder'),
(589, 75, '_elementor_template_type', 'wp-page'),
(590, 75, '_elementor_version', '4.1.4'),
(591, 75, '_elementor_pro_version', '4.1.2'),
(592, 75, '_elementor_global_class_usage_indexed', '1'),
(593, 75, '_elementor_global_class_usage_indexed_preview', '1'),
(594, 75, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(595, 75, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(671, 81, '_wp_page_template', 'elementor_header_footer'),
(613, 76, '_elementor_page_settings', 'a:0:{}'),
(616, 77, '_wp_page_template', 'elementor_header_footer'),
(617, 77, '_elementor_edit_mode', 'builder'),
(618, 77, '_elementor_template_type', 'wp-page'),
(619, 77, '_elementor_version', '4.1.4'),
(620, 77, '_elementor_pro_version', '4.1.2'),
(621, 77, '_elementor_global_class_usage_indexed', '1'),
(622, 77, '_elementor_global_class_usage_indexed_preview', '1'),
(623, 77, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(624, 77, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(626, 77, '_elementor_page_settings', 'a:0:{}'),
(629, 78, '_wp_page_template', 'elementor_header_footer'),
(630, 78, '_elementor_edit_mode', 'builder'),
(631, 78, '_elementor_template_type', 'wp-page'),
(632, 78, '_elementor_version', '4.1.4'),
(633, 78, '_elementor_pro_version', '4.1.2'),
(634, 78, '_elementor_global_class_usage_indexed', '1'),
(635, 78, '_elementor_global_class_usage_indexed_preview', '1'),
(636, 78, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(637, 78, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(685, 82, '_wp_page_template', 'elementor_header_footer'),
(686, 82, '_elementor_edit_mode', 'builder'),
(687, 82, '_elementor_template_type', 'wp-page'),
(688, 82, '_elementor_version', '4.1.4'),
(689, 82, '_elementor_pro_version', '4.1.2'),
(690, 82, '_elementor_global_class_usage_indexed', '1'),
(691, 82, '_elementor_global_class_usage_indexed_preview', '1'),
(692, 82, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(693, 82, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(655, 79, '_elementor_page_settings', 'a:0:{}'),
(658, 80, '_wp_page_template', 'elementor_header_footer'),
(659, 80, '_elementor_edit_mode', 'builder'),
(660, 80, '_elementor_template_type', 'wp-page'),
(661, 80, '_elementor_version', '4.1.4'),
(662, 80, '_elementor_pro_version', '4.1.2'),
(663, 80, '_elementor_global_class_usage_indexed', '1'),
(664, 80, '_elementor_global_class_usage_indexed_preview', '1'),
(665, 80, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(666, 80, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(668, 80, '_elementor_page_settings', 'a:0:{}'),
(672, 81, '_elementor_edit_mode', 'builder'),
(673, 81, '_elementor_template_type', 'wp-page'),
(674, 81, '_elementor_version', '4.1.4'),
(675, 81, '_elementor_pro_version', '4.1.2'),
(676, 81, '_elementor_global_class_usage_indexed', '1'),
(677, 81, '_elementor_global_class_usage_indexed_preview', '1'),
(678, 81, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(679, 81, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(695, 82, '_elementor_page_settings', 'a:0:{}'),
(696, 83, '_wp_page_template', 'elementor_header_footer'),
(697, 83, '_elementor_edit_mode', 'builder'),
(698, 83, '_elementor_template_type', 'wp-page'),
(699, 83, '_elementor_version', '4.1.4'),
(700, 83, '_elementor_pro_version', '4.1.2'),
(701, 83, '_elementor_global_class_usage_indexed', '1'),
(702, 83, '_elementor_global_class_usage_indexed_preview', '1'),
(703, 83, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(704, 83, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"a5b3d2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome \",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(706, 83, '_elementor_page_settings', 'a:0:{}'),
(707, 84, '_wp_page_template', 'elementor_header_footer'),
(708, 84, '_elementor_edit_mode', 'builder'),
(709, 84, '_elementor_template_type', 'wp-page'),
(710, 84, '_elementor_version', '4.1.4'),
(711, 84, '_elementor_pro_version', '4.1.2'),
(712, 84, '_elementor_global_class_usage_indexed', '1'),
(713, 84, '_elementor_global_class_usage_indexed_preview', '1'),
(714, 84, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(715, 84, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(747, 87, '_wp_page_template', 'elementor_header_footer'),
(721, 85, '_wp_page_template', 'elementor_header_footer'),
(722, 85, '_elementor_edit_mode', 'builder'),
(723, 85, '_elementor_template_type', 'wp-page'),
(724, 85, '_elementor_version', '4.1.4'),
(725, 85, '_elementor_pro_version', '4.1.2'),
(726, 85, '_elementor_global_class_usage_indexed', '1'),
(727, 85, '_elementor_global_class_usage_indexed_preview', '1'),
(728, 85, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(729, 85, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(789, 90, '_wp_page_template', 'elementor_header_footer'),
(763, 88, '_wp_page_template', 'elementor_header_footer'),
(764, 88, '_elementor_edit_mode', 'builder'),
(765, 88, '_elementor_template_type', 'wp-page'),
(766, 88, '_elementor_version', '4.1.4'),
(767, 88, '_elementor_pro_version', '4.1.2'),
(768, 88, '_elementor_global_class_usage_indexed', '1'),
(769, 88, '_elementor_global_class_usage_indexed_preview', '1'),
(770, 88, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(771, 88, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(731, 85, '_elementor_page_settings', 'a:0:{}'),
(734, 86, '_wp_page_template', 'elementor_header_footer'),
(735, 86, '_elementor_edit_mode', 'builder'),
(736, 86, '_elementor_template_type', 'wp-page'),
(737, 86, '_elementor_version', '4.1.4'),
(738, 86, '_elementor_pro_version', '4.1.2'),
(739, 86, '_elementor_global_class_usage_indexed', '1'),
(740, 86, '_elementor_global_class_usage_indexed_preview', '1'),
(741, 86, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(742, 86, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(744, 86, '_elementor_page_settings', 'a:0:{}'),
(748, 87, '_elementor_edit_mode', 'builder'),
(749, 87, '_elementor_template_type', 'wp-page'),
(750, 87, '_elementor_version', '4.1.4'),
(751, 87, '_elementor_pro_version', '4.1.2'),
(752, 87, '_elementor_global_class_usage_indexed', '1'),
(753, 87, '_elementor_global_class_usage_indexed_preview', '1'),
(754, 87, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(755, 87, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(805, 91, '_wp_page_template', 'elementor_header_footer'),
(806, 91, '_elementor_edit_mode', 'builder'),
(807, 91, '_elementor_template_type', 'wp-page'),
(808, 91, '_elementor_version', '4.1.4'),
(809, 91, '_elementor_pro_version', '4.1.2'),
(810, 91, '_elementor_global_class_usage_indexed', '1'),
(811, 91, '_elementor_global_class_usage_indexed_preview', '1'),
(812, 91, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(813, 91, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(773, 88, '_elementor_page_settings', 'a:0:{}'),
(776, 89, '_wp_page_template', 'elementor_header_footer'),
(777, 89, '_elementor_edit_mode', 'builder'),
(778, 89, '_elementor_template_type', 'wp-page'),
(779, 89, '_elementor_version', '4.1.4'),
(780, 89, '_elementor_pro_version', '4.1.2'),
(781, 89, '_elementor_global_class_usage_indexed', '1'),
(782, 89, '_elementor_global_class_usage_indexed_preview', '1'),
(783, 89, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(784, 89, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(786, 89, '_elementor_page_settings', 'a:0:{}'),
(790, 90, '_elementor_edit_mode', 'builder'),
(791, 90, '_elementor_template_type', 'wp-page'),
(792, 90, '_elementor_version', '4.1.4'),
(793, 90, '_elementor_pro_version', '4.1.2'),
(794, 90, '_elementor_global_class_usage_indexed', '1'),
(795, 90, '_elementor_global_class_usage_indexed_preview', '1'),
(796, 90, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(797, 90, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(845, 94, '_wp_page_template', 'elementor_header_footer'),
(846, 94, '_elementor_edit_mode', 'builder'),
(847, 94, '_elementor_template_type', 'wp-page'),
(848, 94, '_elementor_version', '4.1.4'),
(849, 94, '_elementor_pro_version', '4.1.2'),
(850, 94, '_elementor_global_class_usage_indexed', '1'),
(851, 94, '_elementor_global_class_usage_indexed_preview', '1'),
(852, 94, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(853, 94, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p><br \\/>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(815, 91, '_elementor_page_settings', 'a:0:{}'),
(818, 92, '_wp_page_template', 'elementor_header_footer'),
(819, 92, '_elementor_edit_mode', 'builder'),
(820, 92, '_elementor_template_type', 'wp-page'),
(821, 92, '_elementor_version', '4.1.4'),
(822, 92, '_elementor_pro_version', '4.1.2'),
(823, 92, '_elementor_global_class_usage_indexed', '1'),
(824, 92, '_elementor_global_class_usage_indexed_preview', '1'),
(825, 92, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(826, 92, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(828, 92, '_elementor_page_settings', 'a:0:{}'),
(831, 93, '_wp_page_template', 'elementor_header_footer'),
(832, 93, '_elementor_edit_mode', 'builder'),
(833, 93, '_elementor_template_type', 'wp-page'),
(834, 93, '_elementor_version', '4.1.4'),
(835, 93, '_elementor_pro_version', '4.1.2'),
(836, 93, '_elementor_global_class_usage_indexed', '1'),
(837, 93, '_elementor_global_class_usage_indexed_preview', '1'),
(838, 93, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(839, 93, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p><br \\/>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(855, 94, '_elementor_page_settings', 'a:0:{}'),
(856, 95, '_wp_page_template', 'elementor_header_footer'),
(857, 95, '_elementor_edit_mode', 'builder'),
(858, 95, '_elementor_template_type', 'wp-page'),
(859, 95, '_elementor_version', '4.1.4'),
(860, 95, '_elementor_pro_version', '4.1.2'),
(861, 95, '_elementor_global_class_usage_indexed', '1'),
(862, 95, '_elementor_global_class_usage_indexed_preview', '1'),
(863, 95, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(864, 95, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p><br \\/>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(866, 95, '_elementor_page_settings', 'a:0:{}'),
(867, 96, '_wp_page_template', 'elementor_header_footer'),
(868, 96, '_elementor_edit_mode', 'builder'),
(869, 96, '_elementor_template_type', 'wp-page'),
(870, 96, '_elementor_version', '4.1.4'),
(871, 96, '_elementor_pro_version', '4.1.2'),
(872, 96, '_elementor_global_class_usage_indexed', '1'),
(873, 96, '_elementor_global_class_usage_indexed_preview', '1'),
(874, 96, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(875, 96, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p><br \\/>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(881, 97, '_wp_page_template', 'elementor_header_footer'),
(882, 97, '_elementor_edit_mode', 'builder'),
(883, 97, '_elementor_template_type', 'wp-page'),
(884, 97, '_elementor_version', '4.1.4'),
(885, 97, '_elementor_pro_version', '4.1.2'),
(886, 97, '_elementor_global_class_usage_indexed', '1'),
(887, 97, '_elementor_global_class_usage_indexed_preview', '1'),
(888, 97, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(889, 97, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p><br \\/>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(943, 102, '_wp_page_template', 'elementor_header_footer'),
(921, 100, '_wp_page_template', 'elementor_header_footer'),
(922, 100, '_elementor_edit_mode', 'builder'),
(923, 100, '_elementor_template_type', 'wp-page'),
(924, 100, '_elementor_version', '4.1.4'),
(925, 100, '_elementor_pro_version', '4.1.2'),
(926, 100, '_elementor_global_class_usage_indexed', '1'),
(927, 100, '_elementor_global_class_usage_indexed_preview', '1'),
(928, 100, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(929, 100, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#294C4E10\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(891, 97, '_elementor_page_settings', 'a:0:{}'),
(894, 98, '_wp_page_template', 'elementor_header_footer'),
(895, 98, '_elementor_edit_mode', 'builder'),
(896, 98, '_elementor_template_type', 'wp-page'),
(897, 98, '_elementor_version', '4.1.4'),
(898, 98, '_elementor_pro_version', '4.1.2'),
(899, 98, '_elementor_global_class_usage_indexed', '1'),
(900, 98, '_elementor_global_class_usage_indexed_preview', '1'),
(901, 98, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(902, 98, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p><br \\/>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(904, 98, '_elementor_page_settings', 'a:0:{}'),
(907, 99, '_wp_page_template', 'elementor_header_footer'),
(908, 99, '_elementor_edit_mode', 'builder'),
(909, 99, '_elementor_template_type', 'wp-page'),
(910, 99, '_elementor_version', '4.1.4'),
(911, 99, '_elementor_pro_version', '4.1.2'),
(912, 99, '_elementor_global_class_usage_indexed', '1'),
(913, 99, '_elementor_global_class_usage_indexed_preview', '1'),
(914, 99, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(915, 99, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#294C4E10\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(931, 100, '_elementor_page_settings', 'a:0:{}'),
(932, 101, '_wp_page_template', 'elementor_header_footer'),
(933, 101, '_elementor_edit_mode', 'builder'),
(934, 101, '_elementor_template_type', 'wp-page'),
(935, 101, '_elementor_version', '4.1.4'),
(936, 101, '_elementor_pro_version', '4.1.2'),
(937, 101, '_elementor_global_class_usage_indexed', '1'),
(938, 101, '_elementor_global_class_usage_indexed_preview', '1'),
(939, 101, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(940, 101, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_background_color\":\"#294C4E10\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(942, 101, '_elementor_page_settings', 'a:0:{}'),
(944, 102, '_elementor_edit_mode', 'builder'),
(945, 102, '_elementor_template_type', 'wp-page'),
(946, 102, '_elementor_version', '4.1.4'),
(947, 102, '_elementor_pro_version', '4.1.2'),
(948, 102, '_elementor_global_class_usage_indexed', '1'),
(949, 102, '_elementor_global_class_usage_indexed_preview', '1'),
(950, 102, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(951, 102, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(959, 104, '_wp_page_template', 'elementor_header_footer'),
(960, 104, '_elementor_edit_mode', 'builder'),
(961, 104, '_elementor_template_type', 'wp-page'),
(962, 104, '_elementor_version', '4.1.4'),
(963, 104, '_elementor_pro_version', '4.1.2'),
(964, 104, '_elementor_global_class_usage_indexed', '1'),
(965, 104, '_elementor_global_class_usage_indexed_preview', '1'),
(966, 104, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(967, 104, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1013, 109, '_wp_page_template', 'elementor_header_footer'),
(1014, 109, '_elementor_edit_mode', 'builder'),
(1015, 109, '_elementor_template_type', 'wp-page'),
(1016, 109, '_elementor_version', '4.1.4'),
(1017, 109, '_elementor_pro_version', '4.1.2'),
(1018, 109, '_elementor_global_class_usage_indexed', '1'),
(1019, 109, '_elementor_global_class_usage_indexed_preview', '1'),
(1020, 109, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1021, 109, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(957, 103, '_wp_attached_file', '2026/07/about-mental-.jpg'),
(958, 103, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/07/about-mental-.jpg\";s:8:\"filesize\";i:81241;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"about-mental--300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"about-mental--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6590;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"about-mental--768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80097;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(969, 104, '_elementor_page_settings', 'a:0:{}'),
(972, 105, '_wp_page_template', 'elementor_header_footer'),
(973, 105, '_elementor_edit_mode', 'builder'),
(974, 105, '_elementor_template_type', 'wp-page'),
(975, 105, '_elementor_version', '4.1.4'),
(976, 105, '_elementor_pro_version', '4.1.2'),
(977, 105, '_elementor_global_class_usage_indexed', '1'),
(978, 105, '_elementor_global_class_usage_indexed_preview', '1'),
(979, 105, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(980, 105, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(982, 105, '_elementor_page_settings', 'a:0:{}'),
(985, 106, '_wp_page_template', 'elementor_header_footer'),
(986, 106, '_elementor_edit_mode', 'builder'),
(987, 106, '_elementor_template_type', 'wp-page'),
(988, 106, '_elementor_version', '4.1.4'),
(989, 106, '_elementor_pro_version', '4.1.2'),
(990, 106, '_elementor_global_class_usage_indexed', '1'),
(991, 106, '_elementor_global_class_usage_indexed_preview', '1'),
(992, 106, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(993, 106, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1438, 147, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1035, 111, '_wp_page_template', 'elementor_header_footer'),
(1036, 111, '_elementor_edit_mode', 'builder'),
(1037, 111, '_elementor_template_type', 'wp-page'),
(1038, 111, '_elementor_version', '4.1.4'),
(1039, 111, '_elementor_pro_version', '4.1.2'),
(1040, 111, '_elementor_global_class_usage_indexed', '1'),
(1041, 111, '_elementor_global_class_usage_indexed_preview', '1'),
(1042, 111, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1043, 111, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mission-a.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1011, 108, '_wp_attached_file', '2026/07/mission-a.jpg'),
(1012, 108, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:572;s:4:\"file\";s:21:\"2026/07/mission-a.jpg\";s:8:\"filesize\";i:90453;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"mission-a-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"mission-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7740;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"mission-a-768x439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60407;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(1023, 109, '_elementor_page_settings', 'a:0:{}'),
(1024, 110, '_wp_page_template', 'elementor_header_footer'),
(1025, 110, '_elementor_edit_mode', 'builder'),
(1026, 110, '_elementor_template_type', 'wp-page'),
(1027, 110, '_elementor_version', '4.1.4'),
(1028, 110, '_elementor_pro_version', '4.1.2'),
(1029, 110, '_elementor_global_class_usage_indexed', '1'),
(1030, 110, '_elementor_global_class_usage_indexed_preview', '1'),
(1031, 110, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1032, 110, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"754c80f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1034, 110, '_elementor_page_settings', 'a:0:{}'),
(1437, 147, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1049, 113, '_wp_page_template', 'elementor_header_footer'),
(1050, 113, '_elementor_edit_mode', 'builder'),
(1051, 113, '_elementor_template_type', 'wp-page'),
(1052, 113, '_elementor_version', '4.1.4'),
(1053, 113, '_elementor_pro_version', '4.1.2'),
(1054, 113, '_elementor_global_class_usage_indexed', '1'),
(1055, 113, '_elementor_global_class_usage_indexed_preview', '1'),
(1056, 113, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1057, 113, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mission-a.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1047, 112, '_wp_attached_file', '2026/07/prymary.jpg'),
(1048, 112, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2026/07/prymary.jpg\";s:8:\"filesize\";i:64913;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"prymary-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15387;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"prymary-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7585;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(1059, 113, '_elementor_page_settings', 'a:0:{}'),
(1060, 114, '_wp_page_template', 'elementor_header_footer'),
(1061, 114, '_elementor_edit_mode', 'builder'),
(1062, 114, '_elementor_template_type', 'wp-page'),
(1063, 114, '_elementor_version', '4.1.4'),
(1064, 114, '_elementor_pro_version', '4.1.2'),
(1065, 114, '_elementor_global_class_usage_indexed', '1'),
(1066, 114, '_elementor_global_class_usage_indexed_preview', '1'),
(1067, 114, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1068, 114, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mission-a.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1070, 114, '_elementor_page_settings', 'a:0:{}'),
(1433, 147, '_elementor_version', '4.1.4'),
(1434, 147, '_elementor_pro_version', '4.1.2'),
(1435, 147, '_elementor_global_class_usage_indexed', '1'),
(1436, 147, '_elementor_global_class_usage_indexed_preview', '1'),
(1071, 115, '_wp_page_template', 'elementor_header_footer'),
(1072, 115, '_elementor_edit_mode', 'builder'),
(1073, 115, '_elementor_template_type', 'wp-page'),
(1074, 115, '_elementor_version', '4.1.4'),
(1075, 115, '_elementor_pro_version', '4.1.2'),
(1076, 115, '_elementor_global_class_usage_indexed', '1'),
(1077, 115, '_elementor_global_class_usage_indexed_preview', '1'),
(1078, 115, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1079, 115, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1083, 116, '_wp_page_template', 'elementor_header_footer'),
(1084, 116, '_elementor_edit_mode', 'builder'),
(1085, 116, '_elementor_template_type', 'wp-page'),
(1086, 116, '_elementor_version', '4.1.4'),
(1087, 116, '_elementor_pro_version', '4.1.2'),
(1088, 116, '_elementor_global_class_usage_indexed', '1'),
(1089, 116, '_elementor_global_class_usage_indexed_preview', '1'),
(1090, 116, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1091, 116, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1093, 116, '_elementor_page_settings', 'a:0:{}'),
(1094, 117, '_wp_page_template', 'elementor_header_footer'),
(1095, 117, '_elementor_edit_mode', 'builder'),
(1096, 117, '_elementor_template_type', 'wp-page'),
(1097, 117, '_elementor_version', '4.1.4'),
(1098, 117, '_elementor_pro_version', '4.1.2'),
(1099, 117, '_elementor_global_class_usage_indexed', '1'),
(1100, 117, '_elementor_global_class_usage_indexed_preview', '1'),
(1101, 117, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1102, 117, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1104, 117, '_elementor_page_settings', 'a:0:{}'),
(1105, 118, '_wp_page_template', 'elementor_header_footer'),
(1106, 118, '_elementor_edit_mode', 'builder'),
(1107, 118, '_elementor_template_type', 'wp-page'),
(1108, 118, '_elementor_version', '4.1.4'),
(1109, 118, '_elementor_pro_version', '4.1.2'),
(1110, 118, '_elementor_global_class_usage_indexed', '1'),
(1111, 118, '_elementor_global_class_usage_indexed_preview', '1'),
(1112, 118, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1113, 118, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1432, 147, '_elementor_template_type', 'wp-page'),
(1119, 119, '_wp_page_template', 'elementor_header_footer'),
(1120, 119, '_elementor_edit_mode', 'builder'),
(1121, 119, '_elementor_template_type', 'wp-page'),
(1122, 119, '_elementor_version', '4.1.4'),
(1123, 119, '_elementor_pro_version', '4.1.2'),
(1124, 119, '_elementor_global_class_usage_indexed', '1'),
(1125, 119, '_elementor_global_class_usage_indexed_preview', '1'),
(1126, 119, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1127, 119, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1202, 125, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2026/07/wellness-ab.webp\";s:8:\"filesize\";i:175478;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"wellness-ab-273x300.webp\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20428;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"wellness-ab-931x1024.webp\";s:5:\"width\";i:931;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:102810;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"wellness-ab-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8362;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"wellness-ab-768x845.webp\";s:5:\"width\";i:768;s:6:\"height\";i:845;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:79034;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(1187, 124, '_wp_page_template', 'elementor_header_footer'),
(1161, 122, '_wp_page_template', 'elementor_header_footer'),
(1162, 122, '_elementor_edit_mode', 'builder'),
(1163, 122, '_elementor_template_type', 'wp-page'),
(1164, 122, '_elementor_version', '4.1.4'),
(1165, 122, '_elementor_pro_version', '4.1.2'),
(1166, 122, '_elementor_global_class_usage_indexed', '1'),
(1167, 122, '_elementor_global_class_usage_indexed_preview', '1'),
(1168, 122, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1169, 122, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1251, 130, '_elementor_template_type', 'wp-page'),
(1252, 130, '_elementor_version', '4.1.4'),
(1253, 130, '_elementor_pro_version', '4.1.2'),
(1254, 130, '_elementor_global_class_usage_indexed', '1'),
(1255, 130, '_elementor_global_class_usage_indexed_preview', '1'),
(1256, 130, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1257, 130, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1271, 132, '_wp_page_template', 'elementor_header_footer'),
(1129, 119, '_elementor_page_settings', 'a:0:{}'),
(1132, 120, '_wp_page_template', 'elementor_header_footer'),
(1133, 120, '_elementor_edit_mode', 'builder'),
(1134, 120, '_elementor_template_type', 'wp-page'),
(1135, 120, '_elementor_version', '4.1.4'),
(1136, 120, '_elementor_pro_version', '4.1.2'),
(1137, 120, '_elementor_global_class_usage_indexed', '1'),
(1138, 120, '_elementor_global_class_usage_indexed_preview', '1'),
(1139, 120, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1140, 120, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1142, 120, '_elementor_page_settings', 'a:0:{}'),
(1145, 121, '_wp_page_template', 'elementor_header_footer'),
(1146, 121, '_elementor_edit_mode', 'builder'),
(1147, 121, '_elementor_template_type', 'wp-page'),
(1148, 121, '_elementor_version', '4.1.4'),
(1149, 121, '_elementor_pro_version', '4.1.2'),
(1150, 121, '_elementor_global_class_usage_indexed', '1'),
(1151, 121, '_elementor_global_class_usage_indexed_preview', '1'),
(1152, 121, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1153, 121, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1237, 129, '_wp_page_template', 'elementor_header_footer'),
(1215, 127, '_wp_page_template', 'elementor_header_footer'),
(1216, 127, '_elementor_edit_mode', 'builder'),
(1217, 127, '_elementor_template_type', 'wp-page'),
(1218, 127, '_elementor_version', '4.1.4'),
(1219, 127, '_elementor_pro_version', '4.1.2'),
(1220, 127, '_elementor_global_class_usage_indexed', '1'),
(1221, 127, '_elementor_global_class_usage_indexed_preview', '1'),
(1222, 127, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1223, 127, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1201, 125, '_wp_attached_file', '2026/07/wellness-ab.webp'),
(1171, 122, '_elementor_page_settings', 'a:0:{}'),
(1174, 123, '_wp_page_template', 'elementor_header_footer'),
(1175, 123, '_elementor_edit_mode', 'builder'),
(1176, 123, '_elementor_template_type', 'wp-page'),
(1177, 123, '_elementor_version', '4.1.4'),
(1178, 123, '_elementor_pro_version', '4.1.2'),
(1179, 123, '_elementor_global_class_usage_indexed', '1'),
(1180, 123, '_elementor_global_class_usage_indexed_preview', '1'),
(1181, 123, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1182, 123, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1184, 123, '_elementor_page_settings', 'a:0:{}'),
(1188, 124, '_elementor_edit_mode', 'builder'),
(1189, 124, '_elementor_template_type', 'wp-page'),
(1190, 124, '_elementor_version', '4.1.4'),
(1191, 124, '_elementor_pro_version', '4.1.2'),
(1192, 124, '_elementor_global_class_usage_indexed', '1'),
(1193, 124, '_elementor_global_class_usage_indexed_preview', '1'),
(1194, 124, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1195, 124, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1238, 129, '_elementor_edit_mode', 'builder'),
(1239, 129, '_elementor_template_type', 'wp-page'),
(1240, 129, '_elementor_version', '4.1.4'),
(1241, 129, '_elementor_pro_version', '4.1.2'),
(1242, 129, '_elementor_global_class_usage_indexed', '1'),
(1243, 129, '_elementor_global_class_usage_indexed_preview', '1'),
(1244, 129, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1245, 129, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1225, 127, '_elementor_page_settings', 'a:0:{}'),
(1226, 128, '_wp_page_template', 'elementor_header_footer'),
(1227, 128, '_elementor_edit_mode', 'builder'),
(1228, 128, '_elementor_template_type', 'wp-page'),
(1229, 128, '_elementor_version', '4.1.4'),
(1230, 128, '_elementor_pro_version', '4.1.2'),
(1231, 128, '_elementor_global_class_usage_indexed', '1'),
(1232, 128, '_elementor_global_class_usage_indexed_preview', '1'),
(1233, 128, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1234, 128, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1236, 128, '_elementor_page_settings', 'a:0:{}'),
(1249, 130, '_wp_page_template', 'elementor_header_footer'),
(1250, 130, '_elementor_edit_mode', 'builder'),
(1259, 130, '_elementor_page_settings', 'a:0:{}'),
(1260, 131, '_wp_page_template', 'elementor_header_footer'),
(1261, 131, '_elementor_edit_mode', 'builder'),
(1262, 131, '_elementor_template_type', 'wp-page'),
(1263, 131, '_elementor_version', '4.1.4'),
(1264, 131, '_elementor_pro_version', '4.1.2'),
(1265, 131, '_elementor_global_class_usage_indexed', '1'),
(1266, 131, '_elementor_global_class_usage_indexed_preview', '1'),
(1267, 131, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1268, 131, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1270, 131, '_elementor_page_settings', 'a:0:{}'),
(1272, 132, '_elementor_edit_mode', 'builder'),
(1273, 132, '_elementor_template_type', 'wp-page'),
(1274, 132, '_elementor_version', '4.1.4'),
(1275, 132, '_elementor_pro_version', '4.1.2'),
(1276, 132, '_elementor_global_class_usage_indexed', '1'),
(1277, 132, '_elementor_global_class_usage_indexed_preview', '1'),
(1278, 132, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1279, 132, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1283, 133, '_wp_page_template', 'elementor_header_footer'),
(1284, 133, '_elementor_edit_mode', 'builder'),
(1285, 133, '_elementor_template_type', 'wp-page'),
(1286, 133, '_elementor_version', '4.1.4'),
(1287, 133, '_elementor_pro_version', '4.1.2'),
(1288, 133, '_elementor_global_class_usage_indexed', '1'),
(1289, 133, '_elementor_global_class_usage_indexed_preview', '1'),
(1290, 133, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1291, 133, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1293, 133, '_elementor_page_settings', 'a:0:{}'),
(1294, 134, '_wp_page_template', 'elementor_header_footer'),
(1295, 134, '_elementor_edit_mode', 'builder'),
(1296, 134, '_elementor_template_type', 'wp-page'),
(1297, 134, '_elementor_version', '4.1.4'),
(1298, 134, '_elementor_pro_version', '4.1.2'),
(1299, 134, '_elementor_global_class_usage_indexed', '1'),
(1300, 134, '_elementor_global_class_usage_indexed_preview', '1'),
(1301, 134, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1302, 134, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1304, 134, '_elementor_page_settings', 'a:0:{}'),
(1430, 147, '_wp_page_template', 'elementor_header_footer'),
(1431, 147, '_elementor_edit_mode', 'builder'),
(1305, 135, '_wp_page_template', 'elementor_header_footer'),
(1306, 135, '_elementor_edit_mode', 'builder'),
(1307, 135, '_elementor_template_type', 'wp-page'),
(1308, 135, '_elementor_version', '4.1.4'),
(1309, 135, '_elementor_pro_version', '4.1.2'),
(1310, 135, '_elementor_global_class_usage_indexed', '1'),
(1311, 135, '_elementor_global_class_usage_indexed_preview', '1'),
(1312, 135, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1313, 135, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1396, 144, '_wp_page_template', 'elementor_header_footer'),
(1337, 139, '_wp_page_template', 'elementor_header_footer'),
(1338, 139, '_elementor_edit_mode', 'builder'),
(1339, 139, '_elementor_template_type', 'wp-page'),
(1340, 139, '_elementor_version', '4.1.4'),
(1341, 139, '_elementor_pro_version', '4.1.2'),
(1342, 139, '_elementor_global_class_usage_indexed', '1'),
(1343, 139, '_elementor_global_class_usage_indexed_preview', '1'),
(1344, 139, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1345, 139, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1397, 144, '_elementor_edit_mode', 'builder'),
(1374, 142, '_wp_page_template', 'elementor_header_footer'),
(1375, 142, '_elementor_edit_mode', 'builder'),
(1376, 142, '_elementor_template_type', 'wp-page'),
(1377, 142, '_elementor_version', '4.1.4'),
(1378, 142, '_elementor_pro_version', '4.1.2'),
(1379, 142, '_elementor_global_class_usage_indexed', '1'),
(1380, 142, '_elementor_global_class_usage_indexed_preview', '1'),
(1381, 142, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1382, 142, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1319, 136, '_wp_attached_file', '2026/07/wellness-new.webp'),
(1320, 136, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2026/07/wellness-new.webp\";s:8:\"filesize\";i:55648;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"wellness-new-273x300.webp\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10304;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"wellness-new-931x1024.webp\";s:5:\"width\";i:931;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:44518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"wellness-new-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5294;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"wellness-new-768x845.webp\";s:5:\"width\";i:768;s:6:\"height\";i:845;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:35302;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(1364, 141, '_elementor_version', '4.1.4'),
(1365, 141, '_elementor_pro_version', '4.1.2'),
(1366, 141, '_elementor_global_class_usage_indexed', '1'),
(1367, 141, '_elementor_global_class_usage_indexed_preview', '1'),
(1368, 141, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1369, 141, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1361, 141, '_wp_page_template', 'elementor_header_footer'),
(1362, 141, '_elementor_edit_mode', 'builder'),
(1363, 141, '_elementor_template_type', 'wp-page'),
(1335, 138, '_wp_attached_file', '2026/07/wellness-photo.jpg'),
(1336, 138, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2026/07/wellness-photo.jpg\";s:8:\"filesize\";i:186835;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"wellness-photo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16491;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"wellness-photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6187;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"wellness-photo-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68092;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(1347, 139, '_elementor_page_settings', 'a:0:{}'),
(1349, 140, '_wp_page_template', 'elementor_header_footer'),
(1350, 140, '_elementor_edit_mode', 'builder'),
(1351, 140, '_elementor_template_type', 'wp-page'),
(1352, 140, '_elementor_version', '4.1.4'),
(1353, 140, '_elementor_pro_version', '4.1.2'),
(1354, 140, '_elementor_global_class_usage_indexed', '1'),
(1355, 140, '_elementor_global_class_usage_indexed_preview', '1'),
(1356, 140, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1357, 140, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-ab.webp\",\"id\":125,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1359, 140, '_elementor_page_settings', 'a:0:{}'),
(1384, 142, '_elementor_page_settings', 'a:0:{}'),
(1385, 143, '_wp_page_template', 'elementor_header_footer'),
(1386, 143, '_elementor_edit_mode', 'builder'),
(1387, 143, '_elementor_template_type', 'wp-page'),
(1388, 143, '_elementor_version', '4.1.4'),
(1389, 143, '_elementor_pro_version', '4.1.2'),
(1390, 143, '_elementor_global_class_usage_indexed', '1'),
(1391, 143, '_elementor_global_class_usage_indexed_preview', '1'),
(1392, 143, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1393, 143, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1395, 143, '_elementor_page_settings', 'a:0:{}'),
(1398, 144, '_elementor_template_type', 'wp-page'),
(1399, 144, '_elementor_version', '4.1.4'),
(1400, 144, '_elementor_pro_version', '4.1.2'),
(1401, 144, '_elementor_global_class_usage_indexed', '1'),
(1402, 144, '_elementor_global_class_usage_indexed_preview', '1'),
(1403, 144, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1404, 144, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1408, 145, '_wp_page_template', 'elementor_header_footer'),
(1409, 145, '_elementor_edit_mode', 'builder'),
(1410, 145, '_elementor_template_type', 'wp-page'),
(1411, 145, '_elementor_version', '4.1.4'),
(1412, 145, '_elementor_pro_version', '4.1.2'),
(1413, 145, '_elementor_global_class_usage_indexed', '1'),
(1414, 145, '_elementor_global_class_usage_indexed_preview', '1'),
(1415, 145, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1416, 145, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1418, 145, '_elementor_page_settings', 'a:0:{}'),
(1419, 146, '_wp_page_template', 'elementor_header_footer'),
(1420, 146, '_elementor_edit_mode', 'builder'),
(1421, 146, '_elementor_template_type', 'wp-page'),
(1422, 146, '_elementor_version', '4.1.4'),
(1423, 146, '_elementor_pro_version', '4.1.2'),
(1424, 146, '_elementor_global_class_usage_indexed', '1'),
(1425, 146, '_elementor_global_class_usage_indexed_preview', '1'),
(1426, 146, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1427, 146, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75be084\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"005de24\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"124c7cf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"6f87a6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5e584f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0ab6ce6\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"6c45104\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4b4027c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d4d0a9e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"be7c0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d75ab9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1429, 146, '_elementor_page_settings', 'a:0:{}'),
(1464, 150, '_wp_page_template', 'elementor_header_footer'),
(1442, 148, '_wp_page_template', 'elementor_header_footer'),
(1443, 148, '_elementor_edit_mode', 'builder'),
(1444, 148, '_elementor_template_type', 'wp-page'),
(1445, 148, '_elementor_version', '4.1.4'),
(1446, 148, '_elementor_pro_version', '4.1.2'),
(1447, 148, '_elementor_global_class_usage_indexed', '1'),
(1448, 148, '_elementor_global_class_usage_indexed_preview', '1'),
(1449, 148, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1450, 148, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1452, 148, '_elementor_page_settings', 'a:0:{}'),
(1453, 149, '_wp_page_template', 'elementor_header_footer'),
(1454, 149, '_elementor_edit_mode', 'builder'),
(1455, 149, '_elementor_template_type', 'wp-page'),
(1456, 149, '_elementor_version', '4.1.4'),
(1457, 149, '_elementor_pro_version', '4.1.2'),
(1458, 149, '_elementor_global_class_usage_indexed', '1'),
(1459, 149, '_elementor_global_class_usage_indexed_preview', '1'),
(1460, 149, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1461, 149, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1463, 149, '_elementor_page_settings', 'a:0:{}'),
(1465, 150, '_elementor_edit_mode', 'builder'),
(1466, 150, '_elementor_template_type', 'wp-page'),
(1467, 150, '_elementor_version', '4.1.4'),
(1468, 150, '_elementor_pro_version', '4.1.2'),
(1469, 150, '_elementor_global_class_usage_indexed', '1'),
(1470, 150, '_elementor_global_class_usage_indexed_preview', '1'),
(1471, 150, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1472, 150, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1480, 152, '_wp_page_template', 'elementor_header_footer'),
(1481, 152, '_elementor_edit_mode', 'builder'),
(1482, 152, '_elementor_template_type', 'wp-page'),
(1483, 152, '_elementor_version', '4.1.4'),
(1484, 152, '_elementor_pro_version', '4.1.2'),
(1485, 152, '_elementor_global_class_usage_indexed', '1'),
(1486, 152, '_elementor_global_class_usage_indexed_preview', '1'),
(1487, 152, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1488, 152, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1522, 155, '_wp_page_template', 'elementor_header_footer'),
(1523, 155, '_elementor_edit_mode', 'builder'),
(1524, 155, '_elementor_template_type', 'wp-page'),
(1525, 155, '_elementor_version', '4.1.4'),
(1526, 155, '_elementor_pro_version', '4.1.2'),
(1527, 155, '_elementor_global_class_usage_indexed', '1'),
(1528, 155, '_elementor_global_class_usage_indexed_preview', '1'),
(1529, 155, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1530, 155, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1478, 151, '_wp_attached_file', '2026/07/back-img-12.png'),
(1479, 151, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:311;s:6:\"height\";i:305;s:4:\"file\";s:23:\"2026/07/back-img-12.png\";s:8:\"filesize\";i:80923;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"back-img-12-300x294.png\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75289;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"back-img-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25059;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(1490, 152, '_elementor_page_settings', 'a:0:{}'),
(1493, 153, '_wp_page_template', 'elementor_header_footer'),
(1494, 153, '_elementor_edit_mode', 'builder'),
(1495, 153, '_elementor_template_type', 'wp-page'),
(1496, 153, '_elementor_version', '4.1.4'),
(1497, 153, '_elementor_pro_version', '4.1.2'),
(1498, 153, '_elementor_global_class_usage_indexed', '1'),
(1499, 153, '_elementor_global_class_usage_indexed_preview', '1'),
(1500, 153, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1501, 153, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1503, 153, '_elementor_page_settings', 'a:0:{}'),
(1506, 154, '_wp_page_template', 'elementor_header_footer'),
(1507, 154, '_elementor_edit_mode', 'builder'),
(1508, 154, '_elementor_template_type', 'wp-page'),
(1509, 154, '_elementor_version', '4.1.4'),
(1510, 154, '_elementor_pro_version', '4.1.2'),
(1511, 154, '_elementor_global_class_usage_indexed', '1'),
(1512, 154, '_elementor_global_class_usage_indexed_preview', '1'),
(1513, 154, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1514, 154, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1564, 158, '_wp_page_template', 'elementor_header_footer'),
(1565, 158, '_elementor_edit_mode', 'builder'),
(1566, 158, '_elementor_template_type', 'wp-page'),
(1567, 158, '_elementor_version', '4.1.4'),
(1568, 158, '_elementor_pro_version', '4.1.2'),
(1569, 158, '_elementor_global_class_usage_indexed', '1'),
(1570, 158, '_elementor_global_class_usage_indexed_preview', '1'),
(1571, 158, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1572, 158, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1532, 155, '_elementor_page_settings', 'a:0:{}'),
(1535, 156, '_wp_page_template', 'elementor_header_footer'),
(1536, 156, '_elementor_edit_mode', 'builder'),
(1537, 156, '_elementor_template_type', 'wp-page'),
(1538, 156, '_elementor_version', '4.1.4'),
(1539, 156, '_elementor_pro_version', '4.1.2'),
(1540, 156, '_elementor_global_class_usage_indexed', '1'),
(1541, 156, '_elementor_global_class_usage_indexed_preview', '1'),
(1542, 156, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1543, 156, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"56510c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1545, 156, '_elementor_page_settings', 'a:0:{}'),
(1548, 157, '_wp_page_template', 'elementor_header_footer'),
(1549, 157, '_elementor_edit_mode', 'builder'),
(1550, 157, '_elementor_template_type', 'wp-page'),
(1551, 157, '_elementor_version', '4.1.4'),
(1552, 157, '_elementor_pro_version', '4.1.2'),
(1553, 157, '_elementor_global_class_usage_indexed', '1'),
(1554, 157, '_elementor_global_class_usage_indexed_preview', '1'),
(1555, 157, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1556, 157, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1604, 161, '_wp_page_template', 'elementor_header_footer'),
(1605, 161, '_elementor_edit_mode', 'builder'),
(1606, 161, '_elementor_template_type', 'wp-page'),
(1607, 161, '_elementor_version', '4.1.4'),
(1608, 161, '_elementor_pro_version', '4.1.2'),
(1609, 161, '_elementor_global_class_usage_indexed', '1'),
(1610, 161, '_elementor_global_class_usage_indexed_preview', '1'),
(1611, 161, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1612, 161, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1574, 158, '_elementor_page_settings', 'a:0:{}'),
(1577, 159, '_wp_page_template', 'elementor_header_footer'),
(1578, 159, '_elementor_edit_mode', 'builder'),
(1579, 159, '_elementor_template_type', 'wp-page'),
(1580, 159, '_elementor_version', '4.1.4'),
(1581, 159, '_elementor_pro_version', '4.1.2'),
(1582, 159, '_elementor_global_class_usage_indexed', '1'),
(1583, 159, '_elementor_global_class_usage_indexed_preview', '1'),
(1584, 159, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1585, 159, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1587, 159, '_elementor_page_settings', 'a:0:{}'),
(1590, 160, '_wp_page_template', 'elementor_header_footer'),
(1591, 160, '_elementor_edit_mode', 'builder'),
(1592, 160, '_elementor_template_type', 'wp-page'),
(1593, 160, '_elementor_version', '4.1.4'),
(1594, 160, '_elementor_pro_version', '4.1.2'),
(1595, 160, '_elementor_global_class_usage_indexed', '1'),
(1596, 160, '_elementor_global_class_usage_indexed_preview', '1'),
(1597, 160, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1598, 160, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1614, 161, '_elementor_page_settings', 'a:0:{}'),
(1615, 162, '_wp_page_template', 'elementor_header_footer'),
(1616, 162, '_elementor_edit_mode', 'builder'),
(1617, 162, '_elementor_template_type', 'wp-page'),
(1618, 162, '_elementor_version', '4.1.4'),
(1619, 162, '_elementor_pro_version', '4.1.2'),
(1620, 162, '_elementor_global_class_usage_indexed', '1'),
(1621, 162, '_elementor_global_class_usage_indexed_preview', '1'),
(1622, 162, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1623, 162, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(1625, 162, '_elementor_page_settings', 'a:0:{}'),
(1626, 163, '_wp_page_template', 'elementor_header_footer'),
(1627, 163, '_elementor_edit_mode', 'builder'),
(1628, 163, '_elementor_template_type', 'wp-page'),
(1629, 163, '_elementor_version', '4.1.4'),
(1630, 163, '_elementor_pro_version', '4.1.2'),
(1631, 163, '_elementor_global_class_usage_indexed', '1'),
(1632, 163, '_elementor_global_class_usage_indexed_preview', '1'),
(1633, 163, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1634, 163, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1650, 165, '_wp_page_template', 'elementor_header_footer'),
(1651, 165, '_elementor_edit_mode', 'builder'),
(1652, 165, '_elementor_template_type', 'wp-page'),
(1653, 165, '_elementor_version', '4.1.4'),
(1654, 165, '_elementor_pro_version', '4.1.2'),
(1655, 165, '_elementor_global_class_usage_indexed', '1'),
(1656, 165, '_elementor_global_class_usage_indexed_preview', '1'),
(1657, 165, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1658, 165, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1712, 170, '_wp_page_template', 'elementor_header_footer'),
(1672, 167, '_wp_page_template', 'elementor_header_footer'),
(1673, 167, '_elementor_edit_mode', 'builder'),
(1674, 167, '_elementor_template_type', 'wp-page'),
(1675, 167, '_elementor_version', '4.1.4'),
(1676, 167, '_elementor_pro_version', '4.1.2'),
(1677, 167, '_elementor_global_class_usage_indexed', '1'),
(1678, 167, '_elementor_global_class_usage_indexed_preview', '1'),
(1679, 167, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1680, 167, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1660, 165, '_elementor_page_settings', 'a:0:{}'),
(1661, 166, '_wp_page_template', 'elementor_header_footer'),
(1662, 166, '_elementor_edit_mode', 'builder'),
(1663, 166, '_elementor_template_type', 'wp-page'),
(1664, 166, '_elementor_version', '4.1.4'),
(1665, 166, '_elementor_pro_version', '4.1.2'),
(1666, 166, '_elementor_global_class_usage_indexed', '1'),
(1667, 166, '_elementor_global_class_usage_indexed_preview', '1'),
(1668, 166, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1669, 166, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(1671, 166, '_elementor_page_settings', 'a:0:{}'),
(1686, 168, '_wp_page_template', 'elementor_header_footer'),
(1687, 168, '_elementor_edit_mode', 'builder'),
(1688, 168, '_elementor_template_type', 'wp-page'),
(1689, 168, '_elementor_version', '4.1.4'),
(1690, 168, '_elementor_pro_version', '4.1.2'),
(1691, 168, '_elementor_global_class_usage_indexed', '1'),
(1692, 168, '_elementor_global_class_usage_indexed_preview', '1'),
(1693, 168, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1694, 168, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1726, 171, '_wp_page_template', 'elementor_header_footer'),
(1727, 171, '_elementor_edit_mode', 'builder'),
(1728, 171, '_elementor_template_type', 'wp-page'),
(1729, 171, '_elementor_version', '4.1.4'),
(1730, 171, '_elementor_pro_version', '4.1.2'),
(1731, 171, '_elementor_global_class_usage_indexed', '1'),
(1732, 171, '_elementor_global_class_usage_indexed_preview', '1'),
(1733, 171, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1734, 171, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1696, 168, '_elementor_page_settings', 'a:0:{}'),
(1699, 169, '_wp_page_template', 'elementor_header_footer'),
(1700, 169, '_elementor_edit_mode', 'builder'),
(1701, 169, '_elementor_template_type', 'wp-page'),
(1702, 169, '_elementor_version', '4.1.4'),
(1703, 169, '_elementor_pro_version', '4.1.2'),
(1704, 169, '_elementor_global_class_usage_indexed', '1'),
(1705, 169, '_elementor_global_class_usage_indexed_preview', '1'),
(1706, 169, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1707, 169, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1709, 169, '_elementor_page_settings', 'a:0:{}'),
(1713, 170, '_elementor_edit_mode', 'builder'),
(1714, 170, '_elementor_template_type', 'wp-page'),
(1715, 170, '_elementor_version', '4.1.4'),
(1716, 170, '_elementor_pro_version', '4.1.2'),
(1717, 170, '_elementor_global_class_usage_indexed', '1'),
(1718, 170, '_elementor_global_class_usage_indexed_preview', '1'),
(1719, 170, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1720, 170, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1736, 171, '_elementor_page_settings', 'a:0:{}'),
(1737, 172, '_wp_page_template', 'elementor_header_footer'),
(1738, 172, '_elementor_edit_mode', 'builder'),
(1739, 172, '_elementor_template_type', 'wp-page'),
(1740, 172, '_elementor_version', '4.1.4'),
(1741, 172, '_elementor_pro_version', '4.1.2'),
(1742, 172, '_elementor_global_class_usage_indexed', '1'),
(1743, 172, '_elementor_global_class_usage_indexed_preview', '1'),
(1744, 172, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1745, 172, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1747, 172, '_elementor_page_settings', 'a:0:{}'),
(1748, 173, '_wp_page_template', 'elementor_header_footer'),
(1749, 173, '_elementor_edit_mode', 'builder'),
(1750, 173, '_elementor_template_type', 'wp-page'),
(1751, 173, '_elementor_version', '4.1.4'),
(1752, 173, '_elementor_pro_version', '4.1.2'),
(1753, 173, '_elementor_global_class_usage_indexed', '1'),
(1754, 173, '_elementor_global_class_usage_indexed_preview', '1'),
(1755, 173, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1756, 173, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1760, 174, '_wp_page_template', 'elementor_header_footer'),
(1761, 174, '_elementor_edit_mode', 'builder'),
(1762, 174, '_elementor_template_type', 'wp-page'),
(1763, 174, '_elementor_version', '4.1.4'),
(1764, 174, '_elementor_pro_version', '4.1.2'),
(1765, 174, '_elementor_global_class_usage_indexed', '1'),
(1766, 174, '_elementor_global_class_usage_indexed_preview', '1'),
(1767, 174, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1768, 174, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1770, 174, '_elementor_page_settings', 'a:0:{}'),
(1771, 175, '_wp_page_template', 'elementor_header_footer'),
(1772, 175, '_elementor_edit_mode', 'builder'),
(1773, 175, '_elementor_template_type', 'wp-page'),
(1774, 175, '_elementor_version', '4.1.4'),
(1775, 175, '_elementor_pro_version', '4.1.2'),
(1776, 175, '_elementor_global_class_usage_indexed', '1'),
(1777, 175, '_elementor_global_class_usage_indexed_preview', '1'),
(1778, 175, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1779, 175, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1781, 175, '_elementor_page_settings', 'a:0:{}'),
(1782, 176, '_wp_page_template', 'elementor_header_footer'),
(1783, 176, '_elementor_edit_mode', 'builder'),
(1784, 176, '_elementor_template_type', 'wp-page'),
(1785, 176, '_elementor_version', '4.1.4'),
(1786, 176, '_elementor_pro_version', '4.1.2'),
(1787, 176, '_elementor_global_class_usage_indexed', '1'),
(1788, 176, '_elementor_global_class_usage_indexed_preview', '1'),
(1789, 176, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1790, 176, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1794, 177, '_wp_page_template', 'elementor_header_footer'),
(1795, 177, '_elementor_edit_mode', 'builder'),
(1796, 177, '_elementor_template_type', 'wp-page'),
(1797, 177, '_elementor_version', '4.1.4'),
(1798, 177, '_elementor_pro_version', '4.1.2'),
(1799, 177, '_elementor_global_class_usage_indexed', '1'),
(1800, 177, '_elementor_global_class_usage_indexed_preview', '1'),
(1801, 177, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1802, 177, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1804, 177, '_elementor_page_settings', 'a:0:{}'),
(1805, 178, '_wp_page_template', 'elementor_header_footer'),
(1806, 178, '_elementor_edit_mode', 'builder'),
(1807, 178, '_elementor_template_type', 'wp-page'),
(1808, 178, '_elementor_version', '4.1.4'),
(1809, 178, '_elementor_pro_version', '4.1.2'),
(1810, 178, '_elementor_global_class_usage_indexed', '1'),
(1811, 178, '_elementor_global_class_usage_indexed_preview', '1'),
(1812, 178, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1813, 178, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1815, 178, '_elementor_page_settings', 'a:0:{}'),
(1816, 179, '_wp_page_template', 'elementor_header_footer'),
(1817, 179, '_elementor_edit_mode', 'builder'),
(1818, 179, '_elementor_template_type', 'wp-page'),
(1819, 179, '_elementor_version', '4.1.4'),
(1820, 179, '_elementor_pro_version', '4.1.2'),
(1821, 179, '_elementor_global_class_usage_indexed', '1'),
(1822, 179, '_elementor_global_class_usage_indexed_preview', '1'),
(1823, 179, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1824, 179, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a0719c4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"86d032e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ae28906\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4aa6824\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4660422\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"bc7dcb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1830, 180, '_wp_page_template', 'elementor_header_footer'),
(1831, 180, '_elementor_edit_mode', 'builder'),
(1832, 180, '_elementor_template_type', 'wp-page'),
(1833, 180, '_elementor_version', '4.1.4'),
(1834, 180, '_elementor_pro_version', '4.1.2'),
(1835, 180, '_elementor_global_class_usage_indexed', '1'),
(1836, 180, '_elementor_global_class_usage_indexed_preview', '1'),
(1837, 180, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1838, 180, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a0719c4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"86d032e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ae28906\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4aa6824\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4660422\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"bc7dcb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1872, 183, '_wp_page_template', 'elementor_header_footer'),
(1873, 183, '_elementor_edit_mode', 'builder'),
(1874, 183, '_elementor_template_type', 'wp-page'),
(1875, 183, '_elementor_version', '4.1.4'),
(1876, 183, '_elementor_pro_version', '4.1.2'),
(1877, 183, '_elementor_global_class_usage_indexed', '1'),
(1878, 183, '_elementor_global_class_usage_indexed_preview', '1'),
(1879, 183, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1880, 183, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1840, 180, '_elementor_page_settings', 'a:0:{}'),
(1843, 181, '_wp_page_template', 'elementor_header_footer'),
(1844, 181, '_elementor_edit_mode', 'builder'),
(1845, 181, '_elementor_template_type', 'wp-page'),
(1846, 181, '_elementor_version', '4.1.4');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1847, 181, '_elementor_pro_version', '4.1.2'),
(1848, 181, '_elementor_global_class_usage_indexed', '1'),
(1849, 181, '_elementor_global_class_usage_indexed_preview', '1'),
(1850, 181, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(1851, 181, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a0719c4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"86d032e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ae28906\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4aa6824\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4660422\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"bc7dcb8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1853, 181, '_elementor_page_settings', 'a:0:{}'),
(1856, 182, '_wp_page_template', 'elementor_header_footer'),
(1857, 182, '_elementor_edit_mode', 'builder'),
(1858, 182, '_elementor_template_type', 'wp-page'),
(1859, 182, '_elementor_version', '4.1.4'),
(1860, 182, '_elementor_pro_version', '4.1.2'),
(1861, 182, '_elementor_global_class_usage_indexed', '1'),
(1862, 182, '_elementor_global_class_usage_indexed_preview', '1'),
(1863, 182, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1864, 182, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1940, 188, '_wp_page_template', 'elementor_header_footer'),
(1914, 186, '_wp_page_template', 'elementor_header_footer'),
(1915, 186, '_elementor_edit_mode', 'builder'),
(1916, 186, '_elementor_template_type', 'wp-page'),
(1917, 186, '_elementor_version', '4.1.4'),
(1918, 186, '_elementor_pro_version', '4.1.2'),
(1919, 186, '_elementor_global_class_usage_indexed', '1'),
(1920, 186, '_elementor_global_class_usage_indexed_preview', '1'),
(1921, 186, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1922, 186, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1882, 183, '_elementor_page_settings', 'a:0:{}'),
(1885, 184, '_wp_page_template', 'elementor_header_footer'),
(1886, 184, '_elementor_edit_mode', 'builder'),
(1887, 184, '_elementor_template_type', 'wp-page'),
(1888, 184, '_elementor_version', '4.1.4'),
(1889, 184, '_elementor_pro_version', '4.1.2'),
(1890, 184, '_elementor_global_class_usage_indexed', '1'),
(1891, 184, '_elementor_global_class_usage_indexed_preview', '1'),
(1892, 184, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1893, 184, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1895, 184, '_elementor_page_settings', 'a:0:{}'),
(1898, 185, '_wp_page_template', 'elementor_header_footer'),
(1899, 185, '_elementor_edit_mode', 'builder'),
(1900, 185, '_elementor_template_type', 'wp-page'),
(1901, 185, '_elementor_version', '4.1.4'),
(1902, 185, '_elementor_pro_version', '4.1.2'),
(1903, 185, '_elementor_global_class_usage_indexed', '1'),
(1904, 185, '_elementor_global_class_usage_indexed_preview', '1'),
(1905, 185, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1906, 185, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1954, 189, '_wp_page_template', 'elementor_header_footer'),
(1955, 189, '_elementor_edit_mode', 'builder'),
(1956, 189, '_elementor_template_type', 'wp-page'),
(1957, 189, '_elementor_version', '4.1.4'),
(1958, 189, '_elementor_pro_version', '4.1.2'),
(1959, 189, '_elementor_global_class_usage_indexed', '1'),
(1960, 189, '_elementor_global_class_usage_indexed_preview', '1'),
(1961, 189, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1962, 189, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1924, 186, '_elementor_page_settings', 'a:0:{}'),
(1927, 187, '_wp_page_template', 'elementor_header_footer'),
(1928, 187, '_elementor_edit_mode', 'builder'),
(1929, 187, '_elementor_template_type', 'wp-page'),
(1930, 187, '_elementor_version', '4.1.4'),
(1931, 187, '_elementor_pro_version', '4.1.2'),
(1932, 187, '_elementor_global_class_usage_indexed', '1'),
(1933, 187, '_elementor_global_class_usage_indexed_preview', '1'),
(1934, 187, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1935, 187, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1937, 187, '_elementor_page_settings', 'a:0:{}'),
(1941, 188, '_elementor_edit_mode', 'builder'),
(1942, 188, '_elementor_template_type', 'wp-page'),
(1943, 188, '_elementor_version', '4.1.4'),
(1944, 188, '_elementor_pro_version', '4.1.2'),
(1945, 188, '_elementor_global_class_usage_indexed', '1'),
(1946, 188, '_elementor_global_class_usage_indexed_preview', '1'),
(1947, 188, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1948, 188, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1964, 189, '_elementor_page_settings', 'a:0:{}'),
(1965, 190, '_wp_page_template', 'elementor_header_footer'),
(1966, 190, '_elementor_edit_mode', 'builder'),
(1967, 190, '_elementor_template_type', 'wp-page'),
(1968, 190, '_elementor_version', '4.1.4'),
(1969, 190, '_elementor_pro_version', '4.1.2'),
(1970, 190, '_elementor_global_class_usage_indexed', '1'),
(1971, 190, '_elementor_global_class_usage_indexed_preview', '1'),
(1972, 190, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1973, 190, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1975, 190, '_elementor_page_settings', 'a:0:{}'),
(2010, 194, '_wp_page_template', 'elementor_header_footer'),
(1976, 191, '_wp_page_template', 'elementor_header_footer'),
(1977, 191, '_elementor_edit_mode', 'builder'),
(1978, 191, '_elementor_template_type', 'wp-page'),
(1979, 191, '_elementor_version', '4.1.4'),
(1980, 191, '_elementor_pro_version', '4.1.2'),
(1981, 191, '_elementor_global_class_usage_indexed', '1'),
(1982, 191, '_elementor_global_class_usage_indexed_preview', '1'),
(1983, 191, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1984, 191, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1988, 192, '_wp_page_template', 'elementor_header_footer'),
(1989, 192, '_elementor_edit_mode', 'builder'),
(1990, 192, '_elementor_template_type', 'wp-page'),
(1991, 192, '_elementor_version', '4.1.4'),
(1992, 192, '_elementor_pro_version', '4.1.2'),
(1993, 192, '_elementor_global_class_usage_indexed', '1'),
(1994, 192, '_elementor_global_class_usage_indexed_preview', '1'),
(1995, 192, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1996, 192, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1998, 192, '_elementor_page_settings', 'a:0:{}'),
(1999, 193, '_wp_page_template', 'elementor_header_footer'),
(2000, 193, '_elementor_edit_mode', 'builder'),
(2001, 193, '_elementor_template_type', 'wp-page'),
(2002, 193, '_elementor_version', '4.1.4'),
(2003, 193, '_elementor_pro_version', '4.1.2'),
(2004, 193, '_elementor_global_class_usage_indexed', '1'),
(2005, 193, '_elementor_global_class_usage_indexed_preview', '1'),
(2006, 193, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2007, 193, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2009, 193, '_elementor_page_settings', 'a:0:{}'),
(2011, 194, '_elementor_edit_mode', 'builder'),
(2012, 194, '_elementor_template_type', 'wp-page'),
(2013, 194, '_elementor_version', '4.1.4'),
(2014, 194, '_elementor_pro_version', '4.1.2'),
(2015, 194, '_elementor_global_class_usage_indexed', '1'),
(2016, 194, '_elementor_global_class_usage_indexed_preview', '1'),
(2017, 194, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2018, 194, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2024, 195, '_wp_page_template', 'elementor_header_footer'),
(2025, 195, '_elementor_edit_mode', 'builder'),
(2026, 195, '_elementor_template_type', 'wp-page'),
(2027, 195, '_elementor_version', '4.1.4'),
(2028, 195, '_elementor_pro_version', '4.1.2'),
(2029, 195, '_elementor_global_class_usage_indexed', '1'),
(2030, 195, '_elementor_global_class_usage_indexed_preview', '1'),
(2031, 195, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2032, 195, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2171, 207, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(2066, 198, '_wp_page_template', 'elementor_header_footer'),
(2067, 198, '_elementor_edit_mode', 'builder'),
(2068, 198, '_elementor_template_type', 'wp-page'),
(2069, 198, '_elementor_version', '4.1.4'),
(2070, 198, '_elementor_pro_version', '4.1.2'),
(2071, 198, '_elementor_global_class_usage_indexed', '1'),
(2072, 198, '_elementor_global_class_usage_indexed_preview', '1'),
(2073, 198, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2074, 198, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2034, 195, '_elementor_page_settings', 'a:0:{}'),
(2037, 196, '_wp_page_template', 'elementor_header_footer'),
(2038, 196, '_elementor_edit_mode', 'builder'),
(2039, 196, '_elementor_template_type', 'wp-page'),
(2040, 196, '_elementor_version', '4.1.4'),
(2041, 196, '_elementor_pro_version', '4.1.2'),
(2042, 196, '_elementor_global_class_usage_indexed', '1'),
(2043, 196, '_elementor_global_class_usage_indexed_preview', '1'),
(2044, 196, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2045, 196, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2047, 196, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2172, 207, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2050, 197, '_wp_page_template', 'elementor_header_footer'),
(2051, 197, '_elementor_edit_mode', 'builder'),
(2052, 197, '_elementor_template_type', 'wp-page'),
(2053, 197, '_elementor_version', '4.1.4'),
(2054, 197, '_elementor_pro_version', '4.1.2'),
(2055, 197, '_elementor_global_class_usage_indexed', '1'),
(2056, 197, '_elementor_global_class_usage_indexed_preview', '1'),
(2057, 197, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2058, 197, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2165, 207, '_elementor_edit_mode', 'builder'),
(2108, 202, '_wp_page_template', 'elementor_header_footer'),
(2109, 202, '_elementor_edit_mode', 'builder'),
(2110, 202, '_elementor_template_type', 'wp-page'),
(2111, 202, '_elementor_version', '4.1.4'),
(2112, 202, '_elementor_pro_version', '4.1.2'),
(2113, 202, '_elementor_global_class_usage_indexed', '1'),
(2114, 202, '_elementor_global_class_usage_indexed_preview', '1'),
(2115, 202, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2116, 202, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mission-a.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2106, 201, '_wp_attached_file', '2026/07/Womens-Mental-Wellness-mental.jpg'),
(2107, 201, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:41:\"2026/07/Womens-Mental-Wellness-mental.jpg\";s:8:\"filesize\";i:130609;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Womens-Mental-Wellness-mental-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24481;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Womens-Mental-Wellness-mental-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10808;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Womens-Mental-Wellness-mental-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118733;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(2076, 198, '_elementor_page_settings', 'a:0:{}'),
(2079, 199, '_wp_page_template', 'elementor_header_footer'),
(2080, 199, '_elementor_edit_mode', 'builder'),
(2081, 199, '_elementor_template_type', 'wp-page'),
(2082, 199, '_elementor_version', '4.1.4'),
(2083, 199, '_elementor_pro_version', '4.1.2'),
(2084, 199, '_elementor_global_class_usage_indexed', '1'),
(2085, 199, '_elementor_global_class_usage_indexed_preview', '1'),
(2086, 199, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2087, 199, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2089, 199, '_elementor_page_settings', 'a:0:{}'),
(2166, 207, '_elementor_template_type', 'wp-page'),
(2167, 207, '_elementor_version', '4.1.4'),
(2168, 207, '_elementor_pro_version', '4.1.2'),
(2169, 207, '_elementor_global_class_usage_indexed', '1'),
(2170, 207, '_elementor_global_class_usage_indexed_preview', '1'),
(2092, 200, '_wp_page_template', 'elementor_header_footer'),
(2093, 200, '_elementor_edit_mode', 'builder'),
(2094, 200, '_elementor_template_type', 'wp-page'),
(2095, 200, '_elementor_version', '4.1.4'),
(2096, 200, '_elementor_pro_version', '4.1.2'),
(2097, 200, '_elementor_global_class_usage_indexed', '1'),
(2098, 200, '_elementor_global_class_usage_indexed_preview', '1'),
(2099, 200, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2100, 200, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mission-a.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2118, 202, '_elementor_page_settings', 'a:0:{}'),
(2119, 203, '_wp_page_template', 'elementor_header_footer'),
(2120, 203, '_elementor_edit_mode', 'builder'),
(2121, 203, '_elementor_template_type', 'wp-page'),
(2122, 203, '_elementor_version', '4.1.4'),
(2123, 203, '_elementor_pro_version', '4.1.2'),
(2124, 203, '_elementor_global_class_usage_indexed', '1'),
(2125, 203, '_elementor_global_class_usage_indexed_preview', '1'),
(2126, 203, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2127, 203, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mission-a.jpg\",\"id\":108,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2129, 203, '_elementor_page_settings', 'a:0:{}'),
(2164, 207, '_wp_page_template', 'elementor_header_footer'),
(2130, 204, '_wp_page_template', 'elementor_header_footer'),
(2131, 204, '_elementor_edit_mode', 'builder'),
(2132, 204, '_elementor_template_type', 'wp-page'),
(2133, 204, '_elementor_version', '4.1.4'),
(2134, 204, '_elementor_pro_version', '4.1.2'),
(2135, 204, '_elementor_global_class_usage_indexed', '1'),
(2136, 204, '_elementor_global_class_usage_indexed_preview', '1'),
(2137, 204, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2138, 204, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2142, 205, '_wp_page_template', 'elementor_header_footer'),
(2143, 205, '_elementor_edit_mode', 'builder'),
(2144, 205, '_elementor_template_type', 'wp-page'),
(2145, 205, '_elementor_version', '4.1.4'),
(2146, 205, '_elementor_pro_version', '4.1.2'),
(2147, 205, '_elementor_global_class_usage_indexed', '1'),
(2148, 205, '_elementor_global_class_usage_indexed_preview', '1'),
(2149, 205, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2150, 205, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2152, 205, '_elementor_page_settings', 'a:0:{}'),
(2153, 206, '_wp_page_template', 'elementor_header_footer'),
(2154, 206, '_elementor_edit_mode', 'builder'),
(2155, 206, '_elementor_template_type', 'wp-page'),
(2156, 206, '_elementor_version', '4.1.4'),
(2157, 206, '_elementor_pro_version', '4.1.2'),
(2158, 206, '_elementor_global_class_usage_indexed', '1'),
(2159, 206, '_elementor_global_class_usage_indexed_preview', '1'),
(2160, 206, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2161, 206, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"212dc42\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f43b576\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"03efd9e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ee26824\"}],\"pp_display_conditions\":[{\"_id\":\"34fd069\"}]},\"elements\":[{\"id\":\"bdc98eb\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Women\\u2019s Mental Wellness\",\"_id\":\"22237af\",\"subtitle\":\"\",\"description\":\"<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p>\",\"icon_type\":\"image\",\"icon_text\":\"1\",\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"link_type\":\"button\",\"button_text\":\"Learn More\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon_img_width\":{\"unit\":\"%\",\"size\":\"\",\"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\":14,\"sizes\":[]},\"description_margin\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a901d5d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2163, 206, '_elementor_page_settings', 'a:0:{}'),
(2176, 208, '_wp_page_template', 'elementor_header_footer'),
(2177, 208, '_elementor_edit_mode', 'builder'),
(2178, 208, '_elementor_template_type', 'wp-page'),
(2179, 208, '_elementor_version', '4.1.4'),
(2180, 208, '_elementor_pro_version', '4.1.2'),
(2181, 208, '_elementor_global_class_usage_indexed', '1'),
(2182, 208, '_elementor_global_class_usage_indexed_preview', '1'),
(2183, 208, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2184, 208, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2186, 208, '_elementor_page_settings', 'a:0:{}'),
(2187, 209, '_wp_page_template', 'elementor_header_footer'),
(2188, 209, '_elementor_edit_mode', 'builder'),
(2189, 209, '_elementor_template_type', 'wp-page'),
(2190, 209, '_elementor_version', '4.1.4'),
(2191, 209, '_elementor_pro_version', '4.1.2'),
(2192, 209, '_elementor_global_class_usage_indexed', '1'),
(2193, 209, '_elementor_global_class_usage_indexed_preview', '1'),
(2194, 209, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2195, 209, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(2197, 209, '_elementor_page_settings', 'a:0:{}'),
(2198, 210, '_wp_page_template', 'elementor_header_footer'),
(2199, 210, '_elementor_edit_mode', 'builder'),
(2200, 210, '_elementor_template_type', 'wp-page'),
(2201, 210, '_elementor_version', '4.1.4'),
(2202, 210, '_elementor_pro_version', '4.1.2'),
(2203, 210, '_elementor_global_class_usage_indexed', '1'),
(2204, 210, '_elementor_global_class_usage_indexed_preview', '1'),
(2205, 210, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2206, 210, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2212, 211, '_wp_page_template', 'elementor_header_footer'),
(2213, 211, '_elementor_edit_mode', 'builder'),
(2214, 211, '_elementor_template_type', 'wp-page'),
(2215, 211, '_elementor_version', '4.1.4'),
(2216, 211, '_elementor_pro_version', '4.1.2'),
(2217, 211, '_elementor_global_class_usage_indexed', '1'),
(2218, 211, '_elementor_global_class_usage_indexed_preview', '1'),
(2219, 211, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2220, 211, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2356, 222, '_wp_page_template', 'elementor_header_footer'),
(2252, 214, '_wp_page_template', 'elementor_header_footer'),
(2253, 214, '_elementor_edit_mode', 'builder'),
(2254, 214, '_elementor_template_type', 'wp-page'),
(2255, 214, '_elementor_version', '4.1.4'),
(2256, 214, '_elementor_pro_version', '4.1.2'),
(2257, 214, '_elementor_global_class_usage_indexed', '1'),
(2258, 214, '_elementor_global_class_usage_indexed_preview', '1'),
(2259, 214, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2260, 214, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2222, 211, '_elementor_page_settings', 'a:0:{}'),
(2225, 212, '_wp_page_template', 'elementor_header_footer'),
(2226, 212, '_elementor_edit_mode', 'builder'),
(2227, 212, '_elementor_template_type', 'wp-page'),
(2228, 212, '_elementor_version', '4.1.4'),
(2229, 212, '_elementor_pro_version', '4.1.2'),
(2230, 212, '_elementor_global_class_usage_indexed', '1'),
(2231, 212, '_elementor_global_class_usage_indexed_preview', '1'),
(2232, 212, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2233, 212, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2235, 212, '_elementor_page_settings', 'a:0:{}'),
(2392, 225, '_wp_page_template', 'elementor_header_footer'),
(2357, 222, '_elementor_edit_mode', 'builder'),
(2358, 222, '_elementor_template_type', 'wp-page'),
(2359, 222, '_elementor_version', '4.1.4'),
(2360, 222, '_elementor_pro_version', '4.1.2'),
(2361, 222, '_elementor_global_class_usage_indexed', '1'),
(2362, 222, '_elementor_global_class_usage_indexed_preview', '1'),
(2363, 222, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2364, 222, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2238, 213, '_wp_page_template', 'elementor_header_footer'),
(2239, 213, '_elementor_edit_mode', 'builder'),
(2240, 213, '_elementor_template_type', 'wp-page'),
(2241, 213, '_elementor_version', '4.1.4'),
(2242, 213, '_elementor_pro_version', '4.1.2'),
(2243, 213, '_elementor_global_class_usage_indexed', '1'),
(2244, 213, '_elementor_global_class_usage_indexed_preview', '1'),
(2245, 213, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2246, 213, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2262, 214, '_elementor_page_settings', 'a:0:{}'),
(2263, 215, '_wp_page_template', 'elementor_header_footer'),
(2264, 215, '_elementor_edit_mode', 'builder'),
(2265, 215, '_elementor_template_type', 'wp-page'),
(2266, 215, '_elementor_version', '4.1.4'),
(2267, 215, '_elementor_pro_version', '4.1.2'),
(2268, 215, '_elementor_global_class_usage_indexed', '1'),
(2269, 215, '_elementor_global_class_usage_indexed_preview', '1'),
(2270, 215, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2271, 215, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2273, 215, '_elementor_page_settings', 'a:0:{}'),
(2314, 219, '_wp_page_template', 'elementor_header_footer'),
(2315, 219, '_elementor_edit_mode', 'builder'),
(2316, 219, '_elementor_template_type', 'wp-page'),
(2274, 216, '_wp_page_template', 'elementor_header_footer'),
(2275, 216, '_elementor_edit_mode', 'builder'),
(2276, 216, '_elementor_template_type', 'wp-page'),
(2277, 216, '_elementor_version', '4.1.4'),
(2278, 216, '_elementor_pro_version', '4.1.2'),
(2279, 216, '_elementor_global_class_usage_indexed', '1'),
(2280, 216, '_elementor_global_class_usage_indexed_preview', '1'),
(2281, 216, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2282, 216, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_color\":\"\"},\"button_text_color\":\"#060606\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#294c4e\",\"border_color\":\"#bd9066\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2317, 219, '_elementor_version', '4.1.4'),
(2288, 217, '_wp_page_template', 'elementor_header_footer'),
(2289, 217, '_elementor_edit_mode', 'builder'),
(2290, 217, '_elementor_template_type', 'wp-page'),
(2291, 217, '_elementor_version', '4.1.4'),
(2292, 217, '_elementor_pro_version', '4.1.2'),
(2293, 217, '_elementor_global_class_usage_indexed', '1'),
(2294, 217, '_elementor_global_class_usage_indexed_preview', '1'),
(2295, 217, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2296, 217, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_color\":\"\"},\"button_text_color\":\"#060606\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#294c4e\",\"border_color\":\"#bd9066\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2330, 220, '_wp_page_template', 'elementor_header_footer'),
(2331, 220, '_elementor_edit_mode', 'builder'),
(2332, 220, '_elementor_template_type', 'wp-page'),
(2333, 220, '_elementor_version', '4.1.4'),
(2334, 220, '_elementor_pro_version', '4.1.2'),
(2335, 220, '_elementor_global_class_usage_indexed', '1'),
(2336, 220, '_elementor_global_class_usage_indexed_preview', '1'),
(2337, 220, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2338, 220, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2298, 217, '_elementor_page_settings', 'a:0:{}'),
(2301, 218, '_wp_page_template', 'elementor_header_footer'),
(2302, 218, '_elementor_edit_mode', 'builder'),
(2303, 218, '_elementor_template_type', 'wp-page'),
(2304, 218, '_elementor_version', '4.1.4'),
(2305, 218, '_elementor_pro_version', '4.1.2'),
(2306, 218, '_elementor_global_class_usage_indexed', '1'),
(2307, 218, '_elementor_global_class_usage_indexed_preview', '1'),
(2308, 218, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2309, 218, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\",\"description_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#FFFFFF00\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_color\":\"\"},\"button_text_color\":\"#060606\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#294c4e\",\"border_color\":\"#bd9066\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2311, 218, '_elementor_page_settings', 'a:0:{}'),
(2318, 219, '_elementor_pro_version', '4.1.2'),
(2319, 219, '_elementor_global_class_usage_indexed', '1'),
(2320, 219, '_elementor_global_class_usage_indexed_preview', '1'),
(2321, 219, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2322, 219, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2393, 225, '_elementor_edit_mode', 'builder'),
(2370, 223, '_wp_page_template', 'elementor_header_footer'),
(2371, 223, '_elementor_edit_mode', 'builder'),
(2372, 223, '_elementor_template_type', 'wp-page'),
(2373, 223, '_elementor_version', '4.1.4'),
(2374, 223, '_elementor_pro_version', '4.1.2'),
(2375, 223, '_elementor_global_class_usage_indexed', '1'),
(2376, 223, '_elementor_global_class_usage_indexed_preview', '1'),
(2377, 223, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2378, 223, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2340, 220, '_elementor_page_settings', 'a:0:{}'),
(2343, 221, '_wp_page_template', 'elementor_header_footer'),
(2344, 221, '_elementor_edit_mode', 'builder'),
(2345, 221, '_elementor_template_type', 'wp-page'),
(2346, 221, '_elementor_version', '4.1.4'),
(2347, 221, '_elementor_pro_version', '4.1.2'),
(2348, 221, '_elementor_global_class_usage_indexed', '1'),
(2349, 221, '_elementor_global_class_usage_indexed_preview', '1'),
(2350, 221, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2351, 221, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2cb87e4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\"},\"elements\":[{\"id\":\"9190548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"572be07\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"afb2dd0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"687d4f9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"e1632ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"656b2a2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a932882\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"9fd7b63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9dbb6b3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2353, 221, '_elementor_page_settings', 'a:0:{}'),
(2380, 223, '_elementor_page_settings', 'a:0:{}'),
(2381, 224, '_wp_page_template', 'elementor_header_footer'),
(2382, 224, '_elementor_edit_mode', 'builder'),
(2383, 224, '_elementor_template_type', 'wp-page'),
(2384, 224, '_elementor_version', '4.1.4'),
(2385, 224, '_elementor_pro_version', '4.1.2'),
(2386, 224, '_elementor_global_class_usage_indexed', '1'),
(2387, 224, '_elementor_global_class_usage_indexed_preview', '1'),
(2388, 224, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2389, 224, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2391, 224, '_elementor_page_settings', 'a:0:{}'),
(2394, 225, '_elementor_template_type', 'wp-page'),
(2395, 225, '_elementor_version', '4.1.4'),
(2396, 225, '_elementor_pro_version', '4.1.2'),
(2397, 225, '_elementor_global_class_usage_indexed', '1'),
(2398, 225, '_elementor_global_class_usage_indexed_preview', '1'),
(2399, 225, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2400, 225, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2426, 228, '_wp_page_template', 'elementor_header_footer'),
(2404, 226, '_wp_page_template', 'elementor_header_footer'),
(2405, 226, '_elementor_edit_mode', 'builder'),
(2406, 226, '_elementor_template_type', 'wp-page'),
(2407, 226, '_elementor_version', '4.1.4'),
(2408, 226, '_elementor_pro_version', '4.1.2'),
(2409, 226, '_elementor_global_class_usage_indexed', '1'),
(2410, 226, '_elementor_global_class_usage_indexed_preview', '1'),
(2411, 226, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2412, 226, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2414, 226, '_elementor_page_settings', 'a:0:{}'),
(2415, 227, '_wp_page_template', 'elementor_header_footer'),
(2416, 227, '_elementor_edit_mode', 'builder'),
(2417, 227, '_elementor_template_type', 'wp-page'),
(2418, 227, '_elementor_version', '4.1.4'),
(2419, 227, '_elementor_pro_version', '4.1.2'),
(2420, 227, '_elementor_global_class_usage_indexed', '1'),
(2421, 227, '_elementor_global_class_usage_indexed_preview', '1'),
(2422, 227, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2423, 227, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2425, 227, '_elementor_page_settings', 'a:0:{}'),
(2427, 228, '_elementor_edit_mode', 'builder'),
(2428, 228, '_elementor_template_type', 'wp-page'),
(2429, 228, '_elementor_version', '4.1.4'),
(2430, 228, '_elementor_pro_version', '4.1.2'),
(2431, 228, '_elementor_global_class_usage_indexed', '1'),
(2432, 228, '_elementor_global_class_usage_indexed_preview', '1'),
(2433, 228, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2434, 228, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2442, 231, '_wp_page_template', 'elementor_header_footer'),
(2443, 231, '_elementor_edit_mode', 'builder'),
(2444, 231, '_elementor_template_type', 'wp-page'),
(2445, 231, '_elementor_version', '4.1.4'),
(2446, 231, '_elementor_pro_version', '4.1.2'),
(2447, 231, '_elementor_global_class_usage_indexed', '1'),
(2448, 231, '_elementor_global_class_usage_indexed_preview', '1'),
(2449, 231, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2450, 231, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2440, 230, '_wp_attached_file', '2026/07/Womens-Mental-Wellness-home.webp'),
(2441, 230, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:40:\"2026/07/Womens-Mental-Wellness-home.webp\";s:8:\"filesize\";i:185038;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Womens-Mental-Wellness-home-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18304;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Womens-Mental-Wellness-home-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7816;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Womens-Mental-Wellness-home-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:61246;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(2452, 231, '_elementor_page_settings', 'a:0:{}'),
(2453, 232, '_wp_page_template', 'elementor_header_footer'),
(2454, 232, '_elementor_edit_mode', 'builder'),
(2455, 232, '_elementor_template_type', 'wp-page'),
(2456, 232, '_elementor_version', '4.1.4'),
(2457, 232, '_elementor_pro_version', '4.1.2'),
(2458, 232, '_elementor_global_class_usage_indexed', '1'),
(2459, 232, '_elementor_global_class_usage_indexed_preview', '1'),
(2460, 232, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2461, 232, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2463, 232, '_elementor_page_settings', 'a:0:{}'),
(3220, 298, '_elementor_version', '4.1.4'),
(3221, 298, '_elementor_pro_version', '4.1.2'),
(3222, 298, '_elementor_global_class_usage_indexed', '1'),
(3223, 298, '_elementor_global_class_usage_indexed_preview', '1'),
(3224, 298, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3225, 298, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2464, 233, '_wp_page_template', 'elementor_header_footer'),
(2465, 233, '_elementor_edit_mode', 'builder'),
(2466, 233, '_elementor_template_type', 'wp-page'),
(2467, 233, '_elementor_version', '4.1.4'),
(2468, 233, '_elementor_pro_version', '4.1.2'),
(2469, 233, '_elementor_global_class_usage_indexed', '1'),
(2470, 233, '_elementor_global_class_usage_indexed_preview', '1'),
(2471, 233, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2472, 233, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2478, 234, '_wp_page_template', 'elementor_header_footer'),
(2479, 234, '_elementor_edit_mode', 'builder'),
(2480, 234, '_elementor_template_type', 'wp-page'),
(2481, 234, '_elementor_version', '4.1.4'),
(2482, 234, '_elementor_pro_version', '4.1.2'),
(2483, 234, '_elementor_global_class_usage_indexed', '1'),
(2484, 234, '_elementor_global_class_usage_indexed_preview', '1'),
(2485, 234, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2486, 234, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2518, 237, '_wp_page_template', 'elementor_header_footer'),
(2519, 237, '_elementor_edit_mode', 'builder'),
(2520, 237, '_elementor_template_type', 'wp-page'),
(2521, 237, '_elementor_version', '4.1.4'),
(2522, 237, '_elementor_pro_version', '4.1.2'),
(2523, 237, '_elementor_global_class_usage_indexed', '1'),
(2524, 237, '_elementor_global_class_usage_indexed_preview', '1'),
(2525, 237, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2526, 237, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2488, 234, '_elementor_page_settings', 'a:0:{}'),
(2491, 235, '_wp_page_template', 'elementor_header_footer'),
(2492, 235, '_elementor_edit_mode', 'builder'),
(2493, 235, '_elementor_template_type', 'wp-page'),
(2494, 235, '_elementor_version', '4.1.4'),
(2495, 235, '_elementor_pro_version', '4.1.2'),
(2496, 235, '_elementor_global_class_usage_indexed', '1'),
(2497, 235, '_elementor_global_class_usage_indexed_preview', '1'),
(2498, 235, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2499, 235, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2501, 235, '_elementor_page_settings', 'a:0:{}'),
(2504, 236, '_wp_page_template', 'elementor_header_footer'),
(2505, 236, '_elementor_edit_mode', 'builder'),
(2506, 236, '_elementor_template_type', 'wp-page'),
(2507, 236, '_elementor_version', '4.1.4'),
(2508, 236, '_elementor_pro_version', '4.1.2'),
(2509, 236, '_elementor_global_class_usage_indexed', '1'),
(2510, 236, '_elementor_global_class_usage_indexed_preview', '1'),
(2511, 236, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2512, 236, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2528, 237, '_elementor_page_settings', 'a:0:{}'),
(2529, 238, '_wp_page_template', 'elementor_header_footer'),
(2530, 238, '_elementor_edit_mode', 'builder'),
(2531, 238, '_elementor_template_type', 'wp-page'),
(2532, 238, '_elementor_version', '4.1.4'),
(2533, 238, '_elementor_pro_version', '4.1.2'),
(2534, 238, '_elementor_global_class_usage_indexed', '1'),
(2535, 238, '_elementor_global_class_usage_indexed_preview', '1'),
(2536, 238, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2537, 238, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2539, 238, '_elementor_page_settings', 'a:0:{}'),
(2540, 239, '_wp_page_template', 'elementor_header_footer'),
(2541, 239, '_elementor_edit_mode', 'builder'),
(2542, 239, '_elementor_template_type', 'wp-page'),
(2543, 239, '_elementor_version', '4.1.4'),
(2544, 239, '_elementor_pro_version', '4.1.2'),
(2545, 239, '_elementor_global_class_usage_indexed', '1'),
(2546, 239, '_elementor_global_class_usage_indexed_preview', '1'),
(2547, 239, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2548, 239, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2554, 240, '_wp_page_template', 'elementor_header_footer'),
(2555, 240, '_elementor_edit_mode', 'builder'),
(2556, 240, '_elementor_template_type', 'wp-page'),
(2557, 240, '_elementor_version', '4.1.4'),
(2558, 240, '_elementor_pro_version', '4.1.2'),
(2559, 240, '_elementor_global_class_usage_indexed', '1'),
(2560, 240, '_elementor_global_class_usage_indexed_preview', '1'),
(2561, 240, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2562, 240, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2618, 246, '_wp_page_template', 'elementor_header_footer'),
(2596, 244, '_wp_page_template', 'elementor_header_footer'),
(2597, 244, '_elementor_edit_mode', 'builder'),
(2598, 244, '_elementor_template_type', 'wp-page'),
(2599, 244, '_elementor_version', '4.1.4'),
(2600, 244, '_elementor_pro_version', '4.1.2'),
(2601, 244, '_elementor_global_class_usage_indexed', '1'),
(2602, 244, '_elementor_global_class_usage_indexed_preview', '1'),
(2603, 244, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2604, 244, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2594, 243, '_wp_attached_file', '2026/07/Botox-a.jpg'),
(2595, 243, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:19:\"2026/07/Botox-a.jpg\";s:8:\"filesize\";i:99140;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"Botox-a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18027;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Botox-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6224;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"Botox-a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84253;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(2564, 240, '_elementor_page_settings', 'a:0:{}'),
(2567, 241, '_wp_page_template', 'elementor_header_footer'),
(2568, 241, '_elementor_edit_mode', 'builder'),
(2569, 241, '_elementor_template_type', 'wp-page'),
(2570, 241, '_elementor_version', '4.1.4'),
(2571, 241, '_elementor_pro_version', '4.1.2'),
(2572, 241, '_elementor_global_class_usage_indexed', '1'),
(2573, 241, '_elementor_global_class_usage_indexed_preview', '1'),
(2574, 241, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2575, 241, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2577, 241, '_elementor_page_settings', 'a:0:{}'),
(2580, 242, '_wp_page_template', 'elementor_header_footer'),
(2581, 242, '_elementor_edit_mode', 'builder'),
(2582, 242, '_elementor_template_type', 'wp-page'),
(2583, 242, '_elementor_version', '4.1.4'),
(2584, 242, '_elementor_pro_version', '4.1.2'),
(2585, 242, '_elementor_global_class_usage_indexed', '1'),
(2586, 242, '_elementor_global_class_usage_indexed_preview', '1'),
(2587, 242, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2588, 242, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2606, 244, '_elementor_page_settings', 'a:0:{}'),
(2607, 245, '_wp_page_template', 'elementor_header_footer'),
(2608, 245, '_elementor_edit_mode', 'builder'),
(2609, 245, '_elementor_template_type', 'wp-page'),
(2610, 245, '_elementor_version', '4.1.4'),
(2611, 245, '_elementor_pro_version', '4.1.2'),
(2612, 245, '_elementor_global_class_usage_indexed', '1'),
(2613, 245, '_elementor_global_class_usage_indexed_preview', '1'),
(2614, 245, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2615, 245, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2617, 245, '_elementor_page_settings', 'a:0:{}'),
(2619, 246, '_elementor_edit_mode', 'builder'),
(2620, 246, '_elementor_template_type', 'wp-page'),
(2621, 246, '_elementor_version', '4.1.4'),
(2622, 246, '_elementor_pro_version', '4.1.2'),
(2623, 246, '_elementor_global_class_usage_indexed', '1'),
(2624, 246, '_elementor_global_class_usage_indexed_preview', '1'),
(2625, 246, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2626, 246, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2630, 247, '_wp_page_template', 'elementor_header_footer'),
(2631, 247, '_elementor_edit_mode', 'builder'),
(2632, 247, '_elementor_template_type', 'wp-page'),
(2633, 247, '_elementor_version', '4.1.4'),
(2634, 247, '_elementor_pro_version', '4.1.2'),
(2635, 247, '_elementor_global_class_usage_indexed', '1'),
(2636, 247, '_elementor_global_class_usage_indexed_preview', '1'),
(2637, 247, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2638, 247, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2640, 247, '_elementor_page_settings', 'a:0:{}'),
(2641, 248, '_wp_page_template', 'elementor_header_footer'),
(2642, 248, '_elementor_edit_mode', 'builder'),
(2643, 248, '_elementor_template_type', 'wp-page'),
(2644, 248, '_elementor_version', '4.1.4'),
(2645, 248, '_elementor_pro_version', '4.1.2'),
(2646, 248, '_elementor_global_class_usage_indexed', '1'),
(2647, 248, '_elementor_global_class_usage_indexed_preview', '1'),
(2648, 248, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2649, 248, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2651, 248, '_elementor_page_settings', 'a:0:{}'),
(2652, 249, '_wp_page_template', 'elementor_header_footer'),
(2653, 249, '_elementor_edit_mode', 'builder'),
(2654, 249, '_elementor_template_type', 'wp-page'),
(2655, 249, '_elementor_version', '4.1.4'),
(2656, 249, '_elementor_pro_version', '4.1.2'),
(2657, 249, '_elementor_global_class_usage_indexed', '1'),
(2658, 249, '_elementor_global_class_usage_indexed_preview', '1'),
(2659, 249, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2660, 249, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2666, 251, '_wp_page_template', 'elementor_header_footer'),
(2667, 251, '_elementor_edit_mode', 'builder'),
(2668, 251, '_elementor_template_type', 'wp-page'),
(2669, 251, '_elementor_version', '4.1.4'),
(2670, 251, '_elementor_pro_version', '4.1.2'),
(2671, 251, '_elementor_global_class_usage_indexed', '1'),
(2672, 251, '_elementor_global_class_usage_indexed_preview', '1'),
(2673, 251, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2674, 251, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2664, 250, '_wp_attached_file', '2026/07/Medical-Weight-Management-a.webp'),
(2665, 250, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:40:\"2026/07/Medical-Weight-Management-a.webp\";s:8:\"filesize\";i:131770;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Medical-Weight-Management-a-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Medical-Weight-Management-a-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Medical-Weight-Management-a-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:43598;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(2676, 251, '_elementor_page_settings', 'a:0:{}'),
(2677, 252, '_wp_page_template', 'elementor_header_footer'),
(2678, 252, '_elementor_edit_mode', 'builder'),
(2679, 252, '_elementor_template_type', 'wp-page'),
(2680, 252, '_elementor_version', '4.1.4'),
(2681, 252, '_elementor_pro_version', '4.1.2'),
(2682, 252, '_elementor_global_class_usage_indexed', '1'),
(2683, 252, '_elementor_global_class_usage_indexed_preview', '1'),
(2684, 252, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2685, 252, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2687, 252, '_elementor_page_settings', 'a:0:{}'),
(2688, 253, '_wp_page_template', 'elementor_header_footer'),
(2689, 253, '_elementor_edit_mode', 'builder'),
(2690, 253, '_elementor_template_type', 'wp-page'),
(2691, 253, '_elementor_version', '4.1.4'),
(2692, 253, '_elementor_pro_version', '4.1.2'),
(2693, 253, '_elementor_global_class_usage_indexed', '1'),
(2694, 253, '_elementor_global_class_usage_indexed_preview', '1'),
(2695, 253, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2696, 253, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2702, 254, '_wp_page_template', 'elementor_header_footer'),
(2703, 254, '_elementor_edit_mode', 'builder'),
(2704, 254, '_elementor_template_type', 'wp-page'),
(2705, 254, '_elementor_version', '4.1.4'),
(2706, 254, '_elementor_pro_version', '4.1.2'),
(2707, 254, '_elementor_global_class_usage_indexed', '1'),
(2708, 254, '_elementor_global_class_usage_indexed_preview', '1'),
(2709, 254, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2710, 254, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2701, 20, '_elementor_global_class_usage_indexed', '1'),
(2712, 254, '_elementor_page_settings', 'a:0:{}'),
(2713, 255, '_wp_page_template', 'elementor_header_footer'),
(2714, 255, '_elementor_edit_mode', 'builder'),
(2715, 255, '_elementor_template_type', 'wp-page'),
(2716, 255, '_elementor_version', '4.1.4'),
(2717, 255, '_elementor_pro_version', '4.1.2'),
(2718, 255, '_elementor_global_class_usage_indexed', '1'),
(2719, 255, '_elementor_global_class_usage_indexed_preview', '1'),
(2720, 255, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2721, 255, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2723, 255, '_elementor_page_settings', 'a:0:{}'),
(2724, 256, '_wp_page_template', 'elementor_header_footer'),
(2725, 256, '_elementor_edit_mode', 'builder'),
(2726, 256, '_elementor_template_type', 'wp-page'),
(2727, 256, '_elementor_version', '4.1.4'),
(2728, 256, '_elementor_pro_version', '4.1.2'),
(2729, 256, '_elementor_global_class_usage_indexed', '1'),
(2730, 256, '_elementor_global_class_usage_indexed_preview', '1'),
(2731, 256, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2732, 256, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2738, 257, '_wp_page_template', 'elementor_header_footer'),
(2739, 257, '_elementor_edit_mode', 'builder'),
(2740, 257, '_elementor_template_type', 'wp-page'),
(2741, 257, '_elementor_version', '4.1.4'),
(2742, 257, '_elementor_pro_version', '4.1.2'),
(2743, 257, '_elementor_global_class_usage_indexed', '1'),
(2744, 257, '_elementor_global_class_usage_indexed_preview', '1'),
(2745, 257, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2746, 257, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2737, 18, '_elementor_global_class_usage_indexed', '1'),
(2748, 257, '_elementor_page_settings', 'a:0:{}'),
(2749, 258, '_wp_page_template', 'elementor_header_footer'),
(2750, 258, '_elementor_edit_mode', 'builder'),
(2751, 258, '_elementor_template_type', 'wp-page'),
(2752, 258, '_elementor_version', '4.1.4'),
(2753, 258, '_elementor_pro_version', '4.1.2'),
(2754, 258, '_elementor_global_class_usage_indexed', '1'),
(2755, 258, '_elementor_global_class_usage_indexed_preview', '1'),
(2756, 258, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2757, 258, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2759, 258, '_elementor_page_settings', 'a:0:{}'),
(2830, 266, '_wp_page_template', 'elementor_header_footer'),
(2760, 259, '_wp_page_template', 'elementor_header_footer'),
(2761, 259, '_elementor_edit_mode', 'builder'),
(2762, 259, '_elementor_template_type', 'wp-page'),
(2763, 259, '_elementor_version', '4.1.4'),
(2764, 259, '_elementor_pro_version', '4.1.2'),
(2765, 259, '_elementor_global_class_usage_indexed', '1'),
(2766, 259, '_elementor_global_class_usage_indexed_preview', '1'),
(2767, 259, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2768, 259, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2794, 262, '_wp_page_template', 'elementor_header_footer'),
(2772, 260, '_wp_page_template', 'elementor_header_footer'),
(2773, 260, '_elementor_edit_mode', 'builder'),
(2774, 260, '_elementor_template_type', 'wp-page'),
(2775, 260, '_elementor_version', '4.1.4'),
(2776, 260, '_elementor_pro_version', '4.1.2'),
(2777, 260, '_elementor_global_class_usage_indexed', '1'),
(2778, 260, '_elementor_global_class_usage_indexed_preview', '1'),
(2779, 260, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2780, 260, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2782, 260, '_elementor_page_settings', 'a:0:{}'),
(2783, 261, '_wp_page_template', 'elementor_header_footer'),
(2784, 261, '_elementor_edit_mode', 'builder'),
(2785, 261, '_elementor_template_type', 'wp-page'),
(2786, 261, '_elementor_version', '4.1.4'),
(2787, 261, '_elementor_pro_version', '4.1.2'),
(2788, 261, '_elementor_global_class_usage_indexed', '1'),
(2789, 261, '_elementor_global_class_usage_indexed_preview', '1'),
(2790, 261, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2791, 261, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2793, 261, '_elementor_page_settings', 'a:0:{}'),
(2795, 262, '_elementor_edit_mode', 'builder'),
(2796, 262, '_elementor_template_type', 'wp-page'),
(2797, 262, '_elementor_version', '4.1.4'),
(2798, 262, '_elementor_pro_version', '4.1.2'),
(2799, 262, '_elementor_global_class_usage_indexed', '1'),
(2800, 262, '_elementor_global_class_usage_indexed_preview', '1'),
(2801, 262, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2802, 262, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2808, 264, '_wp_page_template', 'elementor_header_footer'),
(2809, 264, '_elementor_edit_mode', 'builder'),
(2810, 264, '_elementor_template_type', 'wp-page'),
(2811, 264, '_elementor_version', '4.1.4'),
(2812, 264, '_elementor_pro_version', '4.1.2'),
(2813, 264, '_elementor_global_class_usage_indexed', '1'),
(2814, 264, '_elementor_global_class_usage_indexed_preview', '1'),
(2815, 264, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2816, 264, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2806, 263, '_wp_attached_file', '2026/07/Urgent-Care-s.jpg'),
(2807, 263, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/07/Urgent-Care-s.jpg\";s:8:\"filesize\";i:105702;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Urgent-Care-s-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22602;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Urgent-Care-s-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7947;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Urgent-Care-s-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97401;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(2818, 264, '_elementor_page_settings', 'a:0:{}'),
(2819, 265, '_wp_page_template', 'elementor_header_footer'),
(2820, 265, '_elementor_edit_mode', 'builder'),
(2821, 265, '_elementor_template_type', 'wp-page'),
(2822, 265, '_elementor_version', '4.1.4'),
(2823, 265, '_elementor_pro_version', '4.1.2'),
(2824, 265, '_elementor_global_class_usage_indexed', '1'),
(2825, 265, '_elementor_global_class_usage_indexed_preview', '1'),
(2826, 265, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2827, 265, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2829, 265, '_elementor_page_settings', 'a:0:{}'),
(2831, 266, '_elementor_edit_mode', 'builder'),
(2832, 266, '_elementor_template_type', 'wp-page'),
(2833, 266, '_elementor_version', '4.1.4'),
(2834, 266, '_elementor_pro_version', '4.1.2'),
(2835, 266, '_elementor_global_class_usage_indexed', '1'),
(2836, 266, '_elementor_global_class_usage_indexed_preview', '1'),
(2837, 266, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2838, 266, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2842, 267, '_wp_page_template', 'elementor_header_footer'),
(2843, 267, '_elementor_edit_mode', 'builder'),
(2844, 267, '_elementor_template_type', 'wp-page'),
(2845, 267, '_elementor_version', '4.1.4'),
(2846, 267, '_elementor_pro_version', '4.1.2'),
(2847, 267, '_elementor_global_class_usage_indexed', '1'),
(2848, 267, '_elementor_global_class_usage_indexed_preview', '1'),
(2849, 267, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2850, 267, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2852, 267, '_elementor_page_settings', 'a:0:{}'),
(2853, 268, '_wp_page_template', 'elementor_header_footer'),
(2854, 268, '_elementor_edit_mode', 'builder'),
(2855, 268, '_elementor_template_type', 'wp-page'),
(2856, 268, '_elementor_version', '4.1.4'),
(2857, 268, '_elementor_pro_version', '4.1.2'),
(2858, 268, '_elementor_global_class_usage_indexed', '1'),
(2859, 268, '_elementor_global_class_usage_indexed_preview', '1'),
(2860, 268, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2861, 268, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2863, 268, '_elementor_page_settings', 'a:0:{}'),
(3010, 282, '_wp_page_template', 'elementor_header_footer'),
(3011, 282, '_elementor_edit_mode', 'builder'),
(3012, 282, '_elementor_template_type', 'wp-page'),
(3013, 282, '_elementor_version', '4.1.4'),
(3014, 282, '_elementor_pro_version', '4.1.2'),
(3015, 282, '_elementor_global_class_usage_indexed', '1'),
(3016, 282, '_elementor_global_class_usage_indexed_preview', '1'),
(3017, 282, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3018, 282, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2970, 279, '_wp_page_template', 'elementor_header_footer'),
(2937, 276, '_elementor_edit_mode', 'builder'),
(2938, 276, '_elementor_template_type', 'wp-page'),
(2864, 269, '_wp_page_template', 'elementor_header_footer'),
(2865, 269, '_elementor_edit_mode', 'builder'),
(2866, 269, '_elementor_template_type', 'wp-page'),
(2867, 269, '_elementor_version', '4.1.4'),
(2868, 269, '_elementor_pro_version', '4.1.2'),
(2869, 269, '_elementor_global_class_usage_indexed', '1'),
(2870, 269, '_elementor_global_class_usage_indexed_preview', '1'),
(2871, 269, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2872, 269, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2936, 276, '_wp_page_template', 'elementor_header_footer'),
(2880, 271, '_wp_page_template', 'elementor_header_footer'),
(2881, 271, '_elementor_edit_mode', 'builder'),
(2882, 271, '_elementor_template_type', 'wp-page'),
(2883, 271, '_elementor_version', '4.1.4'),
(2884, 271, '_elementor_pro_version', '4.1.2'),
(2885, 271, '_elementor_global_class_usage_indexed', '1'),
(2886, 271, '_elementor_global_class_usage_indexed_preview', '1'),
(2887, 271, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2888, 271, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2876, 270, '_wp_attached_file', '2026/07/Birth-Control-Consultations-a.jpg'),
(2877, 270, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:41:\"2026/07/Birth-Control-Consultations-a.jpg\";s:8:\"filesize\";i:83089;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Birth-Control-Consultations-a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Birth-Control-Consultations-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6428;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Birth-Control-Consultations-a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78844;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(2879, 26, '_elementor_global_class_usage_indexed', '1'),
(2890, 271, '_elementor_page_settings', 'a:0:{}'),
(2891, 272, '_wp_page_template', 'elementor_header_footer'),
(2892, 272, '_elementor_edit_mode', 'builder'),
(2893, 272, '_elementor_template_type', 'wp-page'),
(2894, 272, '_elementor_version', '4.1.4'),
(2895, 272, '_elementor_pro_version', '4.1.2'),
(2896, 272, '_elementor_global_class_usage_indexed', '1'),
(2897, 272, '_elementor_global_class_usage_indexed_preview', '1'),
(2898, 272, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2899, 272, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2901, 272, '_elementor_page_settings', 'a:0:{}'),
(2902, 273, '_wp_page_template', 'elementor_header_footer'),
(2903, 273, '_elementor_edit_mode', 'builder'),
(2904, 273, '_elementor_template_type', 'wp-page'),
(2905, 273, '_elementor_version', '4.1.4'),
(2906, 273, '_elementor_pro_version', '4.1.2'),
(2907, 273, '_elementor_global_class_usage_indexed', '1'),
(2908, 273, '_elementor_global_class_usage_indexed_preview', '1'),
(2909, 273, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2910, 273, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2939, 276, '_elementor_version', '4.1.4'),
(2914, 274, '_wp_page_template', 'elementor_header_footer'),
(2915, 274, '_elementor_edit_mode', 'builder'),
(2916, 274, '_elementor_template_type', 'wp-page'),
(2917, 274, '_elementor_version', '4.1.4'),
(2918, 274, '_elementor_pro_version', '4.1.2'),
(2919, 274, '_elementor_global_class_usage_indexed', '1'),
(2920, 274, '_elementor_global_class_usage_indexed_preview', '1'),
(2921, 274, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2922, 274, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2924, 274, '_elementor_page_settings', 'a:0:{}'),
(2925, 275, '_wp_page_template', 'elementor_header_footer'),
(2926, 275, '_elementor_edit_mode', 'builder'),
(2927, 275, '_elementor_template_type', 'wp-page'),
(2928, 275, '_elementor_version', '4.1.4'),
(2929, 275, '_elementor_pro_version', '4.1.2'),
(2930, 275, '_elementor_global_class_usage_indexed', '1'),
(2931, 275, '_elementor_global_class_usage_indexed_preview', '1'),
(2932, 275, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2933, 275, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care.\\n\\n\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.\\n\\n\\n\\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2935, 275, '_elementor_page_settings', 'a:0:{}'),
(2940, 276, '_elementor_pro_version', '4.1.2'),
(2941, 276, '_elementor_global_class_usage_indexed', '1'),
(2942, 276, '_elementor_global_class_usage_indexed_preview', '1'),
(2943, 276, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2944, 276, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2971, 279, '_elementor_edit_mode', 'builder'),
(2948, 277, '_wp_page_template', 'elementor_header_footer'),
(2949, 277, '_elementor_edit_mode', 'builder'),
(2950, 277, '_elementor_template_type', 'wp-page'),
(2951, 277, '_elementor_version', '4.1.4'),
(2952, 277, '_elementor_pro_version', '4.1.2'),
(2953, 277, '_elementor_global_class_usage_indexed', '1'),
(2954, 277, '_elementor_global_class_usage_indexed_preview', '1'),
(2955, 277, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2956, 277, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2958, 277, '_elementor_page_settings', 'a:0:{}'),
(2959, 278, '_wp_page_template', 'elementor_header_footer'),
(2960, 278, '_elementor_edit_mode', 'builder'),
(2961, 278, '_elementor_template_type', 'wp-page'),
(2962, 278, '_elementor_version', '4.1.4'),
(2963, 278, '_elementor_pro_version', '4.1.2'),
(2964, 278, '_elementor_global_class_usage_indexed', '1'),
(2965, 278, '_elementor_global_class_usage_indexed_preview', '1'),
(2966, 278, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2967, 278, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Convenient, compassionate care when you need it most.Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2969, 278, '_elementor_page_settings', 'a:0:{}'),
(2972, 279, '_elementor_template_type', 'wp-page'),
(2973, 279, '_elementor_version', '4.1.4'),
(2974, 279, '_elementor_pro_version', '4.1.2'),
(2975, 279, '_elementor_global_class_usage_indexed', '1'),
(2976, 279, '_elementor_global_class_usage_indexed_preview', '1'),
(2977, 279, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2978, 279, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2984, 280, '_wp_page_template', 'elementor_header_footer'),
(2985, 280, '_elementor_edit_mode', 'builder'),
(2986, 280, '_elementor_template_type', 'wp-page'),
(2987, 280, '_elementor_version', '4.1.4'),
(2988, 280, '_elementor_pro_version', '4.1.2'),
(2989, 280, '_elementor_global_class_usage_indexed', '1'),
(2990, 280, '_elementor_global_class_usage_indexed_preview', '1'),
(2991, 280, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2992, 280, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3026, 283, '_wp_page_template', 'elementor_header_footer'),
(3027, 283, '_elementor_edit_mode', 'builder'),
(3028, 283, '_elementor_template_type', 'wp-page'),
(3029, 283, '_elementor_version', '4.1.4'),
(3030, 283, '_elementor_pro_version', '4.1.2'),
(3031, 283, '_elementor_global_class_usage_indexed', '1'),
(3032, 283, '_elementor_global_class_usage_indexed_preview', '1'),
(3033, 283, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3034, 283, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3025, 22, '_elementor_global_class_usage_indexed', '1'),
(2994, 280, '_elementor_page_settings', 'a:0:{}'),
(2997, 281, '_wp_page_template', 'elementor_header_footer'),
(2998, 281, '_elementor_edit_mode', 'builder'),
(2999, 281, '_elementor_template_type', 'wp-page'),
(3000, 281, '_elementor_version', '4.1.4'),
(3001, 281, '_elementor_pro_version', '4.1.2'),
(3002, 281, '_elementor_global_class_usage_indexed', '1'),
(3003, 281, '_elementor_global_class_usage_indexed_preview', '1'),
(3004, 281, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3005, 281, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5a0138b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"81e14dd\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1377d23\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ccf3e75\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"49d39ce\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d9e13e6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5e73258\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"14e0c91\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"946adc9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"467b348\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3007, 281, '_elementor_page_settings', 'a:0:{}'),
(3036, 283, '_elementor_page_settings', 'a:0:{}'),
(3037, 284, '_wp_page_template', 'elementor_header_footer'),
(3038, 284, '_elementor_edit_mode', 'builder'),
(3039, 284, '_elementor_template_type', 'wp-page'),
(3040, 284, '_elementor_version', '4.1.4'),
(3041, 284, '_elementor_pro_version', '4.1.2'),
(3042, 284, '_elementor_global_class_usage_indexed', '1'),
(3043, 284, '_elementor_global_class_usage_indexed_preview', '1'),
(3044, 284, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3045, 284, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3047, 284, '_elementor_page_settings', 'a:0:{}'),
(3219, 298, '_elementor_template_type', 'wp-page'),
(3048, 285, '_wp_page_template', 'elementor_header_footer'),
(3049, 285, '_elementor_edit_mode', 'builder'),
(3050, 285, '_elementor_template_type', 'wp-page'),
(3051, 285, '_elementor_version', '4.1.4'),
(3052, 285, '_elementor_pro_version', '4.1.2'),
(3053, 285, '_elementor_global_class_usage_indexed', '1'),
(3054, 285, '_elementor_global_class_usage_indexed_preview', '1'),
(3055, 285, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3056, 285, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3218, 298, '_elementor_edit_mode', 'builder'),
(3060, 286, '_wp_page_template', 'elementor_header_footer'),
(3061, 286, '_elementor_edit_mode', 'builder'),
(3062, 286, '_elementor_template_type', 'wp-page'),
(3063, 286, '_elementor_version', '4.1.4'),
(3064, 286, '_elementor_pro_version', '4.1.2'),
(3065, 286, '_elementor_global_class_usage_indexed', '1'),
(3066, 286, '_elementor_global_class_usage_indexed_preview', '1'),
(3067, 286, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3068, 286, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3070, 286, '_elementor_page_settings', 'a:0:{}'),
(3071, 287, '_wp_page_template', 'elementor_header_footer'),
(3072, 287, '_elementor_edit_mode', 'builder'),
(3073, 287, '_elementor_template_type', 'wp-page'),
(3074, 287, '_elementor_version', '4.1.4'),
(3075, 287, '_elementor_pro_version', '4.1.2'),
(3076, 287, '_elementor_global_class_usage_indexed', '1'),
(3077, 287, '_elementor_global_class_usage_indexed_preview', '1'),
(3078, 287, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3079, 287, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"column\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3081, 287, '_elementor_page_settings', 'a:0:{}'),
(3082, 288, '_wp_page_template', 'elementor_header_footer'),
(3083, 288, '_elementor_edit_mode', 'builder'),
(3084, 288, '_elementor_template_type', 'wp-page'),
(3085, 288, '_elementor_version', '4.1.4'),
(3086, 288, '_elementor_pro_version', '4.1.2'),
(3087, 288, '_elementor_global_class_usage_indexed', '1'),
(3088, 288, '_elementor_global_class_usage_indexed_preview', '1'),
(3089, 288, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3090, 288, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3217, 298, '_wp_page_template', 'elementor_header_footer'),
(3098, 289, '_wp_page_template', 'elementor_header_footer'),
(3099, 289, '_elementor_edit_mode', 'builder'),
(3100, 289, '_elementor_template_type', 'wp-page'),
(3101, 289, '_elementor_version', '4.1.4'),
(3102, 289, '_elementor_pro_version', '4.1.2'),
(3103, 289, '_elementor_global_class_usage_indexed', '1'),
(3104, 289, '_elementor_global_class_usage_indexed_preview', '1'),
(3105, 289, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3106, 289, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3095, 24, '_elementor_global_class_usage_indexed', '1'),
(3195, 296, '_wp_page_template', 'elementor_header_footer'),
(3196, 296, '_elementor_edit_mode', 'builder'),
(3197, 296, '_elementor_template_type', 'wp-page'),
(3198, 296, '_elementor_version', '4.1.4'),
(3199, 296, '_elementor_pro_version', '4.1.2'),
(3200, 296, '_elementor_global_class_usage_indexed', '1'),
(3201, 296, '_elementor_global_class_usage_indexed_preview', '1'),
(3202, 296, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3203, 296, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3138, 16, '_elementor_edit_mode', 'builder'),
(3139, 16, '_astra_content_layout_flag', 'disabled');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3181, 16, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Acute Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/acute-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3141, 16, 'ast-title-bar-display', 'disabled'),
(3142, 16, 'ast-featured-img', 'disabled'),
(3143, 16, '_elementor_template_type', 'wp-page'),
(3146, 16, '_elementor_version', '4.1.4'),
(3147, 16, '_elementor_pro_version', '4.1.2'),
(3155, 16, '_elementor_global_class_usage_indexed_preview', '1'),
(3157, 16, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3159, 293, '_wp_page_template', 'elementor_header_footer'),
(3161, 293, '_elementor_global_class_usage_indexed', '1'),
(3162, 293, '_elementor_edit_mode', 'builder'),
(3163, 293, '_elementor_template_type', 'wp-page'),
(3164, 293, '_elementor_version', '4.1.4'),
(3165, 293, '_elementor_pro_version', '4.1.2'),
(3166, 293, '_elementor_page_settings', 'a:0:{}'),
(3167, 293, '_elementor_global_class_usage_indexed_preview', '1'),
(3168, 293, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3170, 294, '_wp_page_template', 'elementor_header_footer'),
(3172, 294, '_elementor_global_class_usage_indexed', '1'),
(3173, 294, '_elementor_edit_mode', 'builder'),
(3174, 294, '_elementor_template_type', 'wp-page'),
(3175, 294, '_elementor_version', '4.1.4'),
(3176, 294, '_elementor_pro_version', '4.1.2'),
(3177, 294, '_elementor_page_settings', 'a:0:{}'),
(3178, 294, '_elementor_global_class_usage_indexed_preview', '1'),
(3179, 294, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3108, 289, '_elementor_page_settings', 'a:0:{}'),
(3111, 290, '_wp_page_template', 'elementor_header_footer'),
(3112, 290, '_elementor_edit_mode', 'builder'),
(3113, 290, '_elementor_template_type', 'wp-page'),
(3114, 290, '_elementor_version', '4.1.4'),
(3115, 290, '_elementor_pro_version', '4.1.2'),
(3116, 290, '_elementor_global_class_usage_indexed', '1'),
(3117, 290, '_elementor_global_class_usage_indexed_preview', '1'),
(3118, 290, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3119, 290, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}]},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3121, 290, '_elementor_page_settings', 'a:0:{}'),
(3124, 291, '_wp_page_template', 'elementor_header_footer'),
(3125, 291, '_elementor_edit_mode', 'builder'),
(3126, 291, '_elementor_template_type', 'wp-page'),
(3127, 291, '_elementor_version', '4.1.4'),
(3128, 291, '_elementor_pro_version', '4.1.2'),
(3129, 291, '_elementor_global_class_usage_indexed', '1'),
(3130, 291, '_elementor_global_class_usage_indexed_preview', '1'),
(3131, 291, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3132, 291, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(5999, 521, '_elementor_global_class_usage_indexed', '1'),
(6000, 521, '_elementor_edit_mode', 'builder'),
(6001, 521, '_elementor_template_type', 'wp-page'),
(6002, 521, '_elementor_version', '4.1.4'),
(3182, 295, '_wp_page_template', 'default'),
(3184, 295, '_elementor_global_class_usage_indexed', '1'),
(3185, 295, '_elementor_edit_mode', 'builder'),
(3186, 295, '_elementor_template_type', 'wp-page'),
(3187, 295, '_elementor_version', '4.1.4'),
(3188, 295, '_elementor_pro_version', '4.1.2'),
(3189, 295, '_elementor_global_class_usage_indexed_preview', '1'),
(3190, 295, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3192, 295, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"1ac594b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}]},\"elements\":[{\"id\":\"182257a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5929, 516, '_wp_page_template', 'default'),
(5931, 516, '_elementor_global_class_usage_indexed', '1'),
(5932, 516, '_elementor_edit_mode', 'builder'),
(5933, 516, '_elementor_template_type', 'wp-page'),
(5934, 516, '_elementor_version', '4.1.4'),
(5935, 516, '_elementor_pro_version', '4.1.2'),
(5936, 516, '_elementor_global_class_usage_indexed_preview', '1'),
(5937, 516, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5938, 516, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"1ac594b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}]},\"elements\":[{\"id\":\"182257a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3205, 296, '_elementor_page_settings', 'a:0:{}'),
(3206, 297, '_wp_page_template', 'elementor_header_footer'),
(3207, 297, '_elementor_edit_mode', 'builder'),
(3208, 297, '_elementor_template_type', 'wp-page'),
(3209, 297, '_elementor_version', '4.1.4'),
(3210, 297, '_elementor_pro_version', '4.1.2'),
(3211, 297, '_elementor_global_class_usage_indexed', '1'),
(3212, 297, '_elementor_global_class_usage_indexed_preview', '1'),
(3213, 297, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3214, 297, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a7642\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0525f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5d5a4a6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"309d915\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b333a18\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"9e39cc3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3216, 297, '_elementor_page_settings', 'a:0:{}'),
(3259, 301, '_wp_page_template', 'elementor_header_footer'),
(3233, 299, '_wp_page_template', 'elementor_header_footer'),
(3234, 299, '_elementor_edit_mode', 'builder'),
(3235, 299, '_elementor_template_type', 'wp-page'),
(3236, 299, '_elementor_version', '4.1.4'),
(3237, 299, '_elementor_pro_version', '4.1.2'),
(3238, 299, '_elementor_global_class_usage_indexed', '1'),
(3239, 299, '_elementor_global_class_usage_indexed_preview', '1'),
(3240, 299, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3241, 299, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(6003, 521, '_elementor_pro_version', '4.1.2'),
(5971, 519, '_wp_page_template', 'default'),
(5973, 519, '_elementor_global_class_usage_indexed', '1'),
(5974, 519, '_elementor_edit_mode', 'builder'),
(5975, 519, '_elementor_template_type', 'wp-page'),
(5976, 519, '_elementor_version', '4.1.4'),
(5977, 519, '_elementor_pro_version', '4.1.2'),
(5978, 519, '_elementor_global_class_usage_indexed_preview', '1'),
(5979, 519, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5980, 519, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"1ac594b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}]},\"elements\":[{\"id\":\"182257a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6488, 562, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6490, 562, '_elementor_global_class_usage_indexed', '1'),
(6491, 562, '_elementor_edit_mode', 'builder'),
(3318, 307, '_wp_page_template', 'elementor_header_footer'),
(3319, 307, '_elementor_edit_mode', 'builder'),
(3320, 307, '_elementor_template_type', 'wp-page'),
(3321, 307, '_elementor_version', '4.1.4'),
(3322, 307, '_elementor_pro_version', '4.1.2'),
(3323, 307, '_elementor_global_class_usage_indexed', '1'),
(3324, 307, '_elementor_global_class_usage_indexed_preview', '1'),
(3325, 307, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(3326, 307, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3357, 310, '_wp_page_template', 'elementor_header_footer'),
(3358, 310, '_elementor_edit_mode', 'builder'),
(3359, 310, '_elementor_template_type', 'wp-page'),
(3360, 310, '_elementor_version', '4.1.4'),
(3361, 310, '_elementor_pro_version', '4.1.2'),
(3362, 310, '_elementor_global_class_usage_indexed', '1'),
(3363, 310, '_elementor_global_class_usage_indexed_preview', '1'),
(3364, 310, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3365, 310, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"48595783\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"id\":304,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/rec_10024160.svg\"},\"library\":\"svg\"},\"_id\":\"82a4b54\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"c3cff1f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#EBEBEB\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3243, 299, '_elementor_page_settings', 'a:0:{}'),
(3246, 300, '_wp_page_template', 'elementor_header_footer'),
(3247, 300, '_elementor_edit_mode', 'builder'),
(3248, 300, '_elementor_template_type', 'wp-page'),
(3249, 300, '_elementor_version', '4.1.4'),
(3250, 300, '_elementor_pro_version', '4.1.2'),
(3251, 300, '_elementor_global_class_usage_indexed', '1'),
(3252, 300, '_elementor_global_class_usage_indexed_preview', '1'),
(3253, 300, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3254, 300, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3256, 300, '_elementor_page_settings', 'a:0:{}'),
(3260, 301, '_elementor_edit_mode', 'builder'),
(3261, 301, '_elementor_template_type', 'wp-page'),
(3262, 301, '_elementor_version', '4.1.4'),
(3263, 301, '_elementor_pro_version', '4.1.2'),
(3264, 301, '_elementor_global_class_usage_indexed', '1'),
(3265, 301, '_elementor_global_class_usage_indexed_preview', '1'),
(3266, 301, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3267, 301, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3383, 312, '_wp_page_template', 'elementor_header_footer'),
(3275, 67, '_wp_trash_meta_status', 'publish'),
(3276, 67, '_wp_trash_meta_time', '1783248915'),
(3277, 67, '_wp_desired_post_slug', 'header-section'),
(3549, 326, '_wp_page_template', 'elementor_header_footer'),
(3550, 326, '_elementor_edit_mode', 'builder'),
(3551, 326, '_elementor_template_type', 'wp-page'),
(3552, 326, '_elementor_version', '4.1.4'),
(3553, 326, '_elementor_pro_version', '4.1.2'),
(3554, 326, '_elementor_global_class_usage_indexed', '1'),
(3555, 326, '_elementor_global_class_usage_indexed_preview', '1'),
(3556, 326, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3557, 326, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3511, 322, '_elementor_global_class_usage_indexed_preview', '1'),
(3512, 322, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3513, 322, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3342, 309, '_wp_page_template', 'elementor_header_footer'),
(3343, 309, '_elementor_edit_mode', 'builder'),
(3344, 309, '_elementor_template_type', 'wp-page'),
(3345, 309, '_elementor_version', '4.1.4'),
(3346, 309, '_elementor_pro_version', '4.1.2'),
(3347, 309, '_elementor_global_class_usage_indexed', '1'),
(3348, 309, '_elementor_global_class_usage_indexed_preview', '1'),
(3349, 309, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3350, 309, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"48595783\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"id\":304,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/rec_10024160.svg\"},\"library\":\"svg\"},\"_id\":\"82a4b54\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"c3cff1f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#EBEBEB\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3292, 303, '_wp_attached_file', '2026/07/Bipolar-Disorder-Management-av.jpg'),
(3293, 303, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:42:\"2026/07/Bipolar-Disorder-Management-av.jpg\";s:8:\"filesize\";i:79697;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Bipolar-Disorder-Management-av-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18672;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Bipolar-Disorder-Management-av-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8262;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Bipolar-Disorder-Management-av-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76957;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(3294, 303, '_elementor_source_image_hash', '4c280ac83e6f5686d5a7dcc3df7d6951469d3568'),
(3295, 304, '_wp_attached_file', '2026/07/rec_10024160.svg'),
(3296, 304, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:291;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3297, 304, '_elementor_source_image_hash', '12578dddd2630ca303fc2119c882210b9aa5a6f9'),
(4276, 385, '_elementor_edit_mode', 'builder'),
(4277, 385, '_elementor_template_type', 'footer'),
(4278, 385, '_elementor_version', '4.1.4'),
(4279, 385, '_elementor_pro_version', '4.1.2'),
(4280, 385, '_elementor_global_class_usage_indexed', '1'),
(4281, 385, '_elementor_global_class_usage_indexed_preview', '1'),
(4282, 385, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4283, 385, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4284, 385, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4235, 381, '_elementor_page_settings', 'a:0:{}'),
(4238, 382, '_wp_page_template', 'elementor_header_footer'),
(4239, 382, '_elementor_edit_mode', 'builder'),
(4240, 382, '_elementor_template_type', 'wp-page'),
(4241, 382, '_elementor_version', '4.1.4'),
(4242, 382, '_elementor_pro_version', '4.1.2'),
(4243, 382, '_elementor_global_class_usage_indexed', '1'),
(4244, 382, '_elementor_global_class_usage_indexed_preview', '1'),
(4245, 382, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4246, 382, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4221, 377, '_wp_page_template', 'default'),
(3328, 307, '_elementor_page_settings', 'a:0:{}'),
(3330, 308, '_wp_page_template', 'elementor_header_footer'),
(3331, 308, '_elementor_edit_mode', 'builder'),
(3332, 308, '_elementor_template_type', 'wp-page'),
(3333, 308, '_elementor_version', '4.1.4'),
(3334, 308, '_elementor_pro_version', '4.1.2'),
(3335, 308, '_elementor_global_class_usage_indexed', '1'),
(3336, 308, '_elementor_global_class_usage_indexed_preview', '1'),
(3337, 308, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3338, 308, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3340, 308, '_elementor_page_settings', 'a:0:{}'),
(3510, 322, '_elementor_global_class_usage_indexed', '1'),
(3409, 314, '_wp_page_template', 'elementor_header_footer'),
(3410, 314, '_elementor_edit_mode', 'builder'),
(3411, 314, '_elementor_template_type', 'wp-page'),
(3412, 314, '_elementor_version', '4.1.4'),
(3413, 314, '_elementor_pro_version', '4.1.2'),
(3414, 314, '_elementor_global_class_usage_indexed', '1'),
(3415, 314, '_elementor_global_class_usage_indexed_preview', '1'),
(3416, 314, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3417, 314, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"48595783\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"id\":304,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/rec_10024160.svg\"},\"library\":\"svg\"},\"_id\":\"82a4b54\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"c3cff1f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#EBEBEB\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3443, 317, '_wp_page_template', 'elementor_header_footer'),
(3444, 317, '_elementor_edit_mode', 'builder'),
(3445, 317, '_elementor_template_type', 'wp-page'),
(3446, 317, '_elementor_version', '4.1.4'),
(3447, 317, '_elementor_pro_version', '4.1.2'),
(3448, 317, '_elementor_global_class_usage_indexed', '1'),
(3465, 319, '_wp_page_template', 'elementor_header_footer'),
(3449, 317, '_elementor_global_class_usage_indexed_preview', '1'),
(3450, 317, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3451, 317, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3367, 310, '_elementor_page_settings', 'a:0:{}'),
(3370, 311, '_wp_page_template', 'elementor_header_footer'),
(3371, 311, '_elementor_edit_mode', 'builder'),
(3372, 311, '_elementor_template_type', 'wp-page'),
(3373, 311, '_elementor_version', '4.1.4'),
(3374, 311, '_elementor_pro_version', '4.1.2'),
(3375, 311, '_elementor_global_class_usage_indexed', '1'),
(3376, 311, '_elementor_global_class_usage_indexed_preview', '1'),
(3377, 311, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3378, 311, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"48595783\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"id\":304,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/rec_10024160.svg\"},\"library\":\"svg\"},\"_id\":\"82a4b54\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"c3cff1f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#EBEBEB\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3380, 311, '_elementor_page_settings', 'a:0:{}'),
(3384, 312, '_elementor_edit_mode', 'builder'),
(3385, 312, '_elementor_template_type', 'wp-page'),
(3386, 312, '_elementor_version', '4.1.4'),
(3387, 312, '_elementor_pro_version', '4.1.2'),
(3388, 312, '_elementor_global_class_usage_indexed', '1'),
(3389, 312, '_elementor_global_class_usage_indexed_preview', '1'),
(3390, 312, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3391, 312, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"48595783\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"id\":304,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/rec_10024160.svg\"},\"library\":\"svg\"},\"_id\":\"82a4b54\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"c3cff1f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#EBEBEB\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3505, 322, '_wp_page_template', 'elementor_header_footer'),
(3506, 322, '_elementor_edit_mode', 'builder'),
(3507, 322, '_elementor_template_type', 'wp-page'),
(3508, 322, '_elementor_version', '4.1.4'),
(3509, 322, '_elementor_pro_version', '4.1.2'),
(3431, 316, '_wp_page_template', 'elementor_header_footer'),
(3432, 316, '_elementor_edit_mode', 'builder'),
(3433, 316, '_elementor_template_type', 'wp-page'),
(3434, 316, '_elementor_version', '4.1.4'),
(3435, 316, '_elementor_pro_version', '4.1.2'),
(3436, 316, '_elementor_global_class_usage_indexed', '1'),
(3437, 316, '_elementor_global_class_usage_indexed_preview', '1'),
(3438, 316, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3439, 316, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3419, 314, '_elementor_page_settings', 'a:0:{}'),
(3420, 315, '_wp_page_template', 'elementor_header_footer'),
(3421, 315, '_elementor_edit_mode', 'builder'),
(3422, 315, '_elementor_template_type', 'wp-page'),
(3423, 315, '_elementor_version', '4.1.4'),
(3424, 315, '_elementor_pro_version', '4.1.2'),
(3425, 315, '_elementor_global_class_usage_indexed', '1'),
(3426, 315, '_elementor_global_class_usage_indexed_preview', '1'),
(3427, 315, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3428, 315, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"48595783\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Contact Us\",\"selected_icon\":{\"value\":{\"id\":304,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/rec_10024160.svg\"},\"library\":\"svg\"},\"_id\":\"82a4b54\"}],\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"5\",\"left\":\"15\",\"isLinked\":false},\"_flex_align_self\":\"flex-start\",\"pp_display_conditions\":[{\"_id\":\"c3cff1f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_color\":\"#EBEBEB\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3430, 315, '_elementor_page_settings', 'a:0:{}'),
(3453, 317, '_elementor_page_settings', 'a:0:{}'),
(3454, 318, '_wp_page_template', 'elementor_header_footer'),
(3455, 318, '_elementor_edit_mode', 'builder'),
(3456, 318, '_elementor_template_type', 'wp-page'),
(3457, 318, '_elementor_version', '4.1.4'),
(3458, 318, '_elementor_pro_version', '4.1.2'),
(3459, 318, '_elementor_global_class_usage_indexed', '1'),
(3460, 318, '_elementor_global_class_usage_indexed_preview', '1'),
(3461, 318, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3462, 318, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3464, 318, '_elementor_page_settings', 'a:0:{}'),
(3466, 319, '_elementor_edit_mode', 'builder'),
(3467, 319, '_elementor_template_type', 'wp-page'),
(3468, 319, '_elementor_version', '4.1.4'),
(3469, 319, '_elementor_pro_version', '4.1.2'),
(3470, 319, '_elementor_global_class_usage_indexed', '1'),
(3471, 319, '_elementor_global_class_usage_indexed_preview', '1'),
(3472, 319, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3473, 319, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3479, 320, '_wp_page_template', 'elementor_header_footer'),
(3480, 320, '_elementor_edit_mode', 'builder'),
(3481, 320, '_elementor_template_type', 'wp-page'),
(3482, 320, '_elementor_version', '4.1.4'),
(3483, 320, '_elementor_pro_version', '4.1.2'),
(3484, 320, '_elementor_global_class_usage_indexed', '1'),
(3485, 320, '_elementor_global_class_usage_indexed_preview', '1'),
(3486, 320, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3487, 320, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3523, 324, '_wp_page_template', 'elementor_header_footer'),
(3524, 324, '_elementor_edit_mode', 'builder'),
(3525, 324, '_elementor_template_type', 'wp-page'),
(3526, 324, '_elementor_version', '4.1.4'),
(3527, 324, '_elementor_pro_version', '4.1.2'),
(3528, 324, '_elementor_global_class_usage_indexed', '1'),
(3529, 324, '_elementor_global_class_usage_indexed_preview', '1'),
(3530, 324, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3531, 324, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3489, 320, '_elementor_page_settings', 'a:0:{}'),
(3492, 321, '_wp_page_template', 'elementor_header_footer'),
(3493, 321, '_elementor_edit_mode', 'builder'),
(3494, 321, '_elementor_template_type', 'wp-page'),
(3495, 321, '_elementor_version', '4.1.4'),
(3496, 321, '_elementor_pro_version', '4.1.2'),
(3497, 321, '_elementor_global_class_usage_indexed', '1'),
(3498, 321, '_elementor_global_class_usage_indexed_preview', '1'),
(3499, 321, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3500, 321, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"},{\"id\":\"5857cd34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"typography_typography\":\"custom\",\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"background_color\":\"#02010124\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"984bc8c\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/serenesoundwellness\\/book-and-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3502, 321, '_elementor_page_settings', 'a:0:{}'),
(3585, 329, '_wp_page_template', 'elementor_header_footer'),
(3563, 327, '_wp_page_template', 'elementor_header_footer'),
(3564, 327, '_elementor_edit_mode', 'builder'),
(3565, 327, '_elementor_template_type', 'wp-page'),
(3566, 327, '_elementor_version', '4.1.4'),
(3567, 327, '_elementor_pro_version', '4.1.2'),
(3568, 327, '_elementor_global_class_usage_indexed', '1'),
(3569, 327, '_elementor_global_class_usage_indexed_preview', '1'),
(3570, 327, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3571, 327, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3521, 323, '_wp_attached_file', '2026/07/appointment-a.jpg'),
(3522, 323, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/07/appointment-a.jpg\";s:8:\"filesize\";i:60058;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"appointment-a-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15903;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"appointment-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7034;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(3533, 324, '_elementor_page_settings', 'a:0:{}'),
(3536, 325, '_wp_page_template', 'elementor_header_footer'),
(3537, 325, '_elementor_edit_mode', 'builder'),
(3538, 325, '_elementor_template_type', 'wp-page'),
(3539, 325, '_elementor_version', '4.1.4'),
(3540, 325, '_elementor_pro_version', '4.1.2'),
(3541, 325, '_elementor_global_class_usage_indexed', '1'),
(3542, 325, '_elementor_global_class_usage_indexed_preview', '1'),
(3543, 325, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3544, 325, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":303,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Bipolar-Disorder-Management-av.jpg\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"4d4ff15d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_color\":\"#111111A3\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0bcf82e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"42d7bb0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f242de\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"46e6386\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"1ac1e346\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-clock\",\"library\":\"fa-regular\"},\"title_text\":\"Open Hours\",\"description_text\":\"\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"position_mobile\":\"inline-start\",\"content_vertical_alignment\":\"middle\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"3af9e67\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor4\",\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"55d67b53\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#A09F9F\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"dd236bf\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9eef1fa\",\"elType\":\"widget\",\"settings\":{\"business_timings\":\"custom\",\"business_hours\":[{\"_id\":\"ec6dfeb\",\"closed_text\":\"Closed\",\"highlight\":\"\"},{\"day\":\"Tuesday\",\"_id\":\"81b94cd\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"cca9676\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"52a7ea2\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"c994a4b\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"9392c24\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"aeafd8c\",\"closed_text\":\"Closed\"}],\"business_hours_custom\":[{\"day\":\"Mon - Fri\",\"_id\":\"2bf9bc2\",\"time\":\"08:00 AM - 04:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sat - Sun\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"5b4030f\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"stripes\":\"\",\"pp_display_conditions\":[{\"_id\":\"bcb7cee\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:56\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_tex_color\":\"globals\\/colors?id=astglobalcolor4\",\"day_color\":\"globals\\/colors?id=astglobalcolor4\",\"hours_color\":\"globals\\/colors?id=astglobalcolor4\",\"closed_row_day_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3546, 325, '_elementor_page_settings', 'a:0:{}'),
(3573, 327, '_elementor_page_settings', 'a:0:{}'),
(3574, 328, '_wp_page_template', 'elementor_header_footer'),
(3575, 328, '_elementor_edit_mode', 'builder'),
(3576, 328, '_elementor_template_type', 'wp-page'),
(3577, 328, '_elementor_version', '4.1.4'),
(3578, 328, '_elementor_pro_version', '4.1.2'),
(3579, 328, '_elementor_global_class_usage_indexed', '1'),
(3580, 328, '_elementor_global_class_usage_indexed_preview', '1'),
(3581, 328, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3582, 328, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3584, 328, '_elementor_page_settings', 'a:0:{}'),
(3586, 329, '_elementor_edit_mode', 'builder'),
(3587, 329, '_elementor_template_type', 'wp-page'),
(3588, 329, '_elementor_version', '4.1.4'),
(3589, 329, '_elementor_pro_version', '4.1.2'),
(3590, 329, '_elementor_global_class_usage_indexed', '1'),
(3591, 329, '_elementor_global_class_usage_indexed_preview', '1'),
(3592, 329, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3593, 329, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3597, 330, '_wp_page_template', 'elementor_header_footer'),
(3598, 330, '_elementor_edit_mode', 'builder'),
(3599, 330, '_elementor_template_type', 'wp-page'),
(3600, 330, '_elementor_version', '4.1.4'),
(3601, 330, '_elementor_pro_version', '4.1.2'),
(3602, 330, '_elementor_global_class_usage_indexed', '1'),
(3603, 330, '_elementor_global_class_usage_indexed_preview', '1'),
(3604, 330, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3605, 330, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3607, 330, '_elementor_page_settings', 'a:0:{}'),
(3608, 331, '_wp_page_template', 'elementor_header_footer'),
(3609, 331, '_elementor_edit_mode', 'builder'),
(3610, 331, '_elementor_template_type', 'wp-page'),
(3611, 331, '_elementor_version', '4.1.4'),
(3612, 331, '_elementor_pro_version', '4.1.2'),
(3613, 331, '_elementor_global_class_usage_indexed', '1'),
(3614, 331, '_elementor_global_class_usage_indexed_preview', '1'),
(3615, 331, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3616, 331, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3618, 331, '_elementor_page_settings', 'a:0:{}'),
(3619, 332, '_wp_page_template', 'elementor_header_footer'),
(3620, 332, '_elementor_edit_mode', 'builder'),
(3621, 332, '_elementor_template_type', 'wp-page'),
(3622, 332, '_elementor_version', '4.1.4'),
(3623, 332, '_elementor_pro_version', '4.1.2'),
(3624, 332, '_elementor_global_class_usage_indexed', '1'),
(3625, 332, '_elementor_global_class_usage_indexed_preview', '1'),
(3626, 332, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3627, 332, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3653, 335, '_wp_page_template', 'elementor_header_footer'),
(3631, 333, '_wp_page_template', 'elementor_header_footer'),
(3632, 333, '_elementor_edit_mode', 'builder'),
(3633, 333, '_elementor_template_type', 'wp-page'),
(3634, 333, '_elementor_version', '4.1.4'),
(3635, 333, '_elementor_pro_version', '4.1.2'),
(3636, 333, '_elementor_global_class_usage_indexed', '1'),
(3637, 333, '_elementor_global_class_usage_indexed_preview', '1'),
(3638, 333, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3639, 333, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3641, 333, '_elementor_page_settings', 'a:0:{}'),
(3642, 334, '_wp_page_template', 'elementor_header_footer'),
(3643, 334, '_elementor_edit_mode', 'builder'),
(3644, 334, '_elementor_template_type', 'wp-page'),
(3645, 334, '_elementor_version', '4.1.4'),
(3646, 334, '_elementor_pro_version', '4.1.2'),
(3647, 334, '_elementor_global_class_usage_indexed', '1'),
(3648, 334, '_elementor_global_class_usage_indexed_preview', '1'),
(3649, 334, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3650, 334, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3652, 334, '_elementor_page_settings', 'a:0:{}'),
(3654, 335, '_elementor_edit_mode', 'builder'),
(3655, 335, '_elementor_template_type', 'wp-page'),
(3656, 335, '_elementor_version', '4.1.4'),
(3657, 335, '_elementor_pro_version', '4.1.2'),
(3658, 335, '_elementor_global_class_usage_indexed', '1'),
(3659, 335, '_elementor_global_class_usage_indexed_preview', '1'),
(3660, 335, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3661, 335, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3665, 336, '_wp_page_template', 'elementor_header_footer'),
(3666, 336, '_elementor_edit_mode', 'builder'),
(3667, 336, '_elementor_template_type', 'wp-page'),
(3668, 336, '_elementor_version', '4.1.4'),
(3669, 336, '_elementor_pro_version', '4.1.2'),
(3670, 336, '_elementor_global_class_usage_indexed', '1'),
(3671, 336, '_elementor_global_class_usage_indexed_preview', '1'),
(3672, 336, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3673, 336, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3675, 336, '_elementor_page_settings', 'a:0:{}'),
(3676, 337, '_wp_page_template', 'elementor_header_footer'),
(3677, 337, '_elementor_edit_mode', 'builder'),
(3678, 337, '_elementor_template_type', 'wp-page'),
(3679, 337, '_elementor_version', '4.1.4'),
(3680, 337, '_elementor_pro_version', '4.1.2'),
(3681, 337, '_elementor_global_class_usage_indexed', '1'),
(3682, 337, '_elementor_global_class_usage_indexed_preview', '1'),
(3683, 337, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3684, 337, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}]},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}]},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}]},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3686, 337, '_elementor_page_settings', 'a:0:{}'),
(3687, 338, '_wp_page_template', 'elementor_header_footer'),
(3688, 338, '_elementor_edit_mode', 'builder'),
(3689, 338, '_elementor_template_type', 'wp-page'),
(3690, 338, '_elementor_version', '4.1.4'),
(3691, 338, '_elementor_pro_version', '4.1.2'),
(3692, 338, '_elementor_global_class_usage_indexed', '1'),
(3693, 338, '_elementor_global_class_usage_indexed_preview', '1'),
(3694, 338, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3695, 338, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3699, 339, '_wp_page_template', 'elementor_header_footer'),
(3700, 339, '_elementor_edit_mode', 'builder'),
(3701, 339, '_elementor_template_type', 'wp-page'),
(3702, 339, '_elementor_version', '4.1.4'),
(3703, 339, '_elementor_pro_version', '4.1.2'),
(3704, 339, '_elementor_global_class_usage_indexed', '1'),
(3705, 339, '_elementor_global_class_usage_indexed_preview', '1'),
(3706, 339, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3707, 339, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3709, 339, '_elementor_page_settings', 'a:0:{}'),
(3710, 340, '_wp_page_template', 'elementor_header_footer'),
(3711, 340, '_elementor_edit_mode', 'builder'),
(3712, 340, '_elementor_template_type', 'wp-page'),
(3713, 340, '_elementor_version', '4.1.4'),
(3714, 340, '_elementor_pro_version', '4.1.2'),
(3715, 340, '_elementor_global_class_usage_indexed', '1'),
(3716, 340, '_elementor_global_class_usage_indexed_preview', '1'),
(3717, 340, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3718, 340, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}]},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3720, 340, '_elementor_page_settings', 'a:0:{}'),
(3721, 341, '_wp_page_template', 'elementor_header_footer'),
(3722, 341, '_elementor_edit_mode', 'builder'),
(3723, 341, '_elementor_template_type', 'wp-page'),
(3724, 341, '_elementor_version', '4.1.4'),
(3725, 341, '_elementor_pro_version', '4.1.2'),
(3726, 341, '_elementor_global_class_usage_indexed', '1'),
(3727, 341, '_elementor_global_class_usage_indexed_preview', '1'),
(3728, 341, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3729, 341, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3733, 342, '_wp_page_template', 'elementor_header_footer'),
(3734, 342, '_elementor_edit_mode', 'builder'),
(3735, 342, '_elementor_template_type', 'wp-page'),
(3736, 342, '_elementor_version', '4.1.4'),
(3737, 342, '_elementor_pro_version', '4.1.2'),
(3738, 342, '_elementor_global_class_usage_indexed', '1'),
(3739, 342, '_elementor_global_class_usage_indexed_preview', '1'),
(3740, 342, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3741, 342, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3743, 342, '_elementor_page_settings', 'a:0:{}'),
(3744, 343, '_wp_page_template', 'elementor_header_footer'),
(3745, 343, '_elementor_edit_mode', 'builder'),
(3746, 343, '_elementor_template_type', 'wp-page'),
(3747, 343, '_elementor_version', '4.1.4'),
(3748, 343, '_elementor_pro_version', '4.1.2'),
(3749, 343, '_elementor_global_class_usage_indexed', '1'),
(3750, 343, '_elementor_global_class_usage_indexed_preview', '1'),
(3751, 343, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3752, 343, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}]},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3754, 343, '_elementor_page_settings', 'a:0:{}'),
(3755, 344, '_wp_page_template', 'elementor_header_footer'),
(3756, 344, '_elementor_edit_mode', 'builder'),
(3757, 344, '_elementor_template_type', 'wp-page'),
(3758, 344, '_elementor_version', '4.1.4'),
(3759, 344, '_elementor_pro_version', '4.1.2'),
(3760, 344, '_elementor_global_class_usage_indexed', '1'),
(3761, 344, '_elementor_global_class_usage_indexed_preview', '1'),
(3762, 344, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3763, 344, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3767, 345, '_wp_page_template', 'elementor_header_footer'),
(3768, 345, '_elementor_edit_mode', 'builder'),
(3769, 345, '_elementor_template_type', 'wp-page'),
(3770, 345, '_elementor_version', '4.1.4'),
(3771, 345, '_elementor_pro_version', '4.1.2'),
(3772, 345, '_elementor_global_class_usage_indexed', '1'),
(3773, 345, '_elementor_global_class_usage_indexed_preview', '1'),
(3774, 345, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3775, 345, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3777, 345, '_elementor_page_settings', 'a:0:{}'),
(3778, 346, '_wp_page_template', 'elementor_header_footer'),
(3779, 346, '_elementor_edit_mode', 'builder'),
(3780, 346, '_elementor_template_type', 'wp-page'),
(3781, 346, '_elementor_version', '4.1.4'),
(3782, 346, '_elementor_pro_version', '4.1.2'),
(3783, 346, '_elementor_global_class_usage_indexed', '1'),
(3784, 346, '_elementor_global_class_usage_indexed_preview', '1'),
(3785, 346, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3786, 346, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3788, 346, '_elementor_page_settings', 'a:0:{}'),
(3789, 347, '_wp_page_template', 'elementor_header_footer'),
(3790, 347, '_elementor_edit_mode', 'builder'),
(3791, 347, '_elementor_template_type', 'wp-page'),
(3792, 347, '_elementor_version', '4.1.4'),
(3793, 347, '_elementor_pro_version', '4.1.2'),
(3794, 347, '_elementor_global_class_usage_indexed', '1'),
(3795, 347, '_elementor_global_class_usage_indexed_preview', '1'),
(3796, 347, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3797, 347, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3801, 348, '_wp_page_template', 'elementor_header_footer'),
(3802, 348, '_elementor_edit_mode', 'builder'),
(3803, 348, '_elementor_template_type', 'wp-page'),
(3804, 348, '_elementor_version', '4.1.4'),
(3805, 348, '_elementor_pro_version', '4.1.2'),
(3806, 348, '_elementor_global_class_usage_indexed', '1'),
(3807, 348, '_elementor_global_class_usage_indexed_preview', '1'),
(3808, 348, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3809, 348, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3811, 348, '_elementor_page_settings', 'a:0:{}'),
(3812, 349, '_wp_page_template', 'elementor_header_footer'),
(3813, 349, '_elementor_edit_mode', 'builder'),
(3814, 349, '_elementor_template_type', 'wp-page'),
(3815, 349, '_elementor_version', '4.1.4'),
(3816, 349, '_elementor_pro_version', '4.1.2'),
(3817, 349, '_elementor_global_class_usage_indexed', '1'),
(3818, 349, '_elementor_global_class_usage_indexed_preview', '1'),
(3819, 349, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3820, 349, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3822, 349, '_elementor_page_settings', 'a:0:{}'),
(3823, 350, '_wp_page_template', 'elementor_header_footer'),
(3824, 350, '_elementor_edit_mode', 'builder'),
(3825, 350, '_elementor_template_type', 'wp-page'),
(3826, 350, '_elementor_version', '4.1.4'),
(3827, 350, '_elementor_pro_version', '4.1.2'),
(3828, 350, '_elementor_global_class_usage_indexed', '1'),
(3829, 350, '_elementor_global_class_usage_indexed_preview', '1'),
(3830, 350, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3831, 350, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3835, 351, '_wp_page_template', 'elementor_header_footer'),
(3836, 351, '_elementor_edit_mode', 'builder'),
(3837, 351, '_elementor_template_type', 'wp-page'),
(3838, 351, '_elementor_version', '4.1.4'),
(3839, 351, '_elementor_pro_version', '4.1.2'),
(3840, 351, '_elementor_global_class_usage_indexed', '1'),
(3841, 351, '_elementor_global_class_usage_indexed_preview', '1'),
(3842, 351, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3843, 351, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3845, 351, '_elementor_page_settings', 'a:0:{}'),
(3846, 352, '_wp_page_template', 'elementor_header_footer'),
(3847, 352, '_elementor_edit_mode', 'builder'),
(3848, 352, '_elementor_template_type', 'wp-page'),
(3849, 352, '_elementor_version', '4.1.4'),
(3850, 352, '_elementor_pro_version', '4.1.2'),
(3851, 352, '_elementor_global_class_usage_indexed', '1'),
(3852, 352, '_elementor_global_class_usage_indexed_preview', '1'),
(3853, 352, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3854, 352, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-114\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3856, 352, '_elementor_page_settings', 'a:0:{}'),
(3857, 353, '_wp_page_template', 'elementor_header_footer'),
(3858, 353, '_elementor_edit_mode', 'builder'),
(3859, 353, '_elementor_template_type', 'wp-page'),
(3860, 353, '_elementor_version', '4.1.4'),
(3861, 353, '_elementor_pro_version', '4.1.2'),
(3862, 353, '_elementor_global_class_usage_indexed', '1'),
(3863, 353, '_elementor_global_class_usage_indexed_preview', '1'),
(3864, 353, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3865, 353, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3891, 356, '_wp_page_template', 'elementor_header_footer'),
(3869, 354, '_wp_page_template', 'elementor_header_footer'),
(3870, 354, '_elementor_edit_mode', 'builder'),
(3871, 354, '_elementor_template_type', 'wp-page'),
(3872, 354, '_elementor_version', '4.1.4'),
(3873, 354, '_elementor_pro_version', '4.1.2'),
(3874, 354, '_elementor_global_class_usage_indexed', '1'),
(3875, 354, '_elementor_global_class_usage_indexed_preview', '1'),
(3876, 354, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3877, 354, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3879, 354, '_elementor_page_settings', 'a:0:{}'),
(3880, 355, '_wp_page_template', 'elementor_header_footer'),
(3881, 355, '_elementor_edit_mode', 'builder'),
(3882, 355, '_elementor_template_type', 'wp-page'),
(3883, 355, '_elementor_version', '4.1.4'),
(3884, 355, '_elementor_pro_version', '4.1.2'),
(3885, 355, '_elementor_global_class_usage_indexed', '1'),
(3886, 355, '_elementor_global_class_usage_indexed_preview', '1'),
(3887, 355, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3888, 355, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":308,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3890, 355, '_elementor_page_settings', 'a:0:{}'),
(3892, 356, '_elementor_edit_mode', 'builder'),
(3893, 356, '_elementor_template_type', 'wp-page'),
(3894, 356, '_elementor_version', '4.1.4'),
(3895, 356, '_elementor_pro_version', '4.1.2'),
(3896, 356, '_elementor_global_class_usage_indexed', '1'),
(3897, 356, '_elementor_global_class_usage_indexed_preview', '1'),
(3898, 356, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3899, 356, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3903, 357, '_wp_page_template', 'elementor_header_footer'),
(3904, 357, '_elementor_edit_mode', 'builder'),
(3905, 357, '_elementor_template_type', 'wp-page'),
(3906, 357, '_elementor_version', '4.1.4'),
(3907, 357, '_elementor_pro_version', '4.1.2'),
(3908, 357, '_elementor_global_class_usage_indexed', '1'),
(3909, 357, '_elementor_global_class_usage_indexed_preview', '1'),
(3910, 357, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3911, 357, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3913, 357, '_elementor_page_settings', 'a:0:{}'),
(3914, 358, '_wp_page_template', 'elementor_header_footer'),
(3915, 358, '_elementor_edit_mode', 'builder'),
(3916, 358, '_elementor_template_type', 'wp-page'),
(3917, 358, '_elementor_version', '4.1.4'),
(3918, 358, '_elementor_pro_version', '4.1.2'),
(3919, 358, '_elementor_global_class_usage_indexed', '1'),
(3920, 358, '_elementor_global_class_usage_indexed_preview', '1'),
(3921, 358, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3922, 358, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}]},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3924, 358, '_elementor_page_settings', 'a:0:{}'),
(3925, 359, '_wp_page_template', 'elementor_header_footer'),
(3926, 359, '_elementor_edit_mode', 'builder'),
(3927, 359, '_elementor_template_type', 'wp-page'),
(3928, 359, '_elementor_version', '4.1.4'),
(3929, 359, '_elementor_pro_version', '4.1.2'),
(3930, 359, '_elementor_global_class_usage_indexed', '1'),
(3931, 359, '_elementor_global_class_usage_indexed_preview', '1'),
(3932, 359, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3933, 359, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3959, 361, '_wp_page_template', 'elementor_header_footer'),
(3960, 361, '_elementor_edit_mode', 'builder'),
(3961, 361, '_elementor_template_type', 'wp-page'),
(3962, 361, '_elementor_version', '4.1.4'),
(3963, 361, '_elementor_pro_version', '4.1.2'),
(3964, 361, '_elementor_global_class_usage_indexed', '1'),
(3965, 361, '_elementor_global_class_usage_indexed_preview', '1'),
(3966, 361, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3967, 361, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3939, 36, '_elementor_global_class_usage_indexed', '1'),
(3999, 364, '_wp_page_template', 'elementor_header_footer'),
(4000, 364, '_elementor_edit_mode', 'builder'),
(4001, 364, '_elementor_template_type', 'wp-page'),
(4002, 364, '_elementor_version', '4.1.4'),
(4003, 364, '_elementor_pro_version', '4.1.2'),
(4004, 364, '_elementor_global_class_usage_indexed', '1'),
(4005, 364, '_elementor_global_class_usage_indexed_preview', '1'),
(4006, 364, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4007, 364, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4045, 367, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3969, 361, '_elementor_page_settings', 'a:0:{}'),
(3972, 362, '_wp_page_template', 'elementor_header_footer'),
(3973, 362, '_elementor_edit_mode', 'builder'),
(3974, 362, '_elementor_template_type', 'wp-page'),
(3975, 362, '_elementor_version', '4.1.4'),
(3976, 362, '_elementor_pro_version', '4.1.2'),
(3977, 362, '_elementor_global_class_usage_indexed', '1'),
(3978, 362, '_elementor_global_class_usage_indexed_preview', '1'),
(3979, 362, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3980, 362, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dab26f1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec2e402\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c79334\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3982, 362, '_elementor_page_settings', 'a:0:{}'),
(3985, 363, '_wp_page_template', 'elementor_header_footer'),
(3986, 363, '_elementor_edit_mode', 'builder'),
(3987, 363, '_elementor_template_type', 'wp-page'),
(3988, 363, '_elementor_version', '4.1.4'),
(3989, 363, '_elementor_pro_version', '4.1.2'),
(3990, 363, '_elementor_global_class_usage_indexed', '1'),
(3991, 363, '_elementor_global_class_usage_indexed_preview', '1'),
(3992, 363, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3993, 363, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4009, 364, '_elementor_page_settings', 'a:0:{}'),
(4010, 365, '_wp_page_template', 'elementor_header_footer'),
(4011, 365, '_elementor_edit_mode', 'builder'),
(4012, 365, '_elementor_template_type', 'wp-page'),
(4013, 365, '_elementor_version', '4.1.4'),
(4014, 365, '_elementor_pro_version', '4.1.2'),
(4015, 365, '_elementor_global_class_usage_indexed', '1'),
(4016, 365, '_elementor_global_class_usage_indexed_preview', '1'),
(4017, 365, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4018, 365, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4020, 365, '_elementor_page_settings', 'a:0:{}'),
(4021, 366, '_wp_page_template', 'elementor_header_footer'),
(4022, 366, '_elementor_edit_mode', 'builder'),
(4023, 366, '_elementor_template_type', 'wp-page'),
(4024, 366, '_elementor_version', '4.1.4'),
(4025, 366, '_elementor_pro_version', '4.1.2'),
(4026, 366, '_elementor_global_class_usage_indexed', '1'),
(4027, 366, '_elementor_global_class_usage_indexed_preview', '1'),
(4028, 366, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4029, 366, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4053, 368, '_wp_page_template', 'elementor_header_footer'),
(4054, 368, '_elementor_edit_mode', 'builder'),
(4055, 368, '_elementor_template_type', 'wp-page'),
(4056, 368, '_elementor_version', '4.1.4'),
(4057, 368, '_elementor_pro_version', '4.1.2'),
(4058, 368, '_elementor_global_class_usage_indexed', '1'),
(4059, 368, '_elementor_global_class_usage_indexed_preview', '1'),
(4060, 368, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4061, 368, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4047, 367, '_elementor_screenshot_failed', '2026-07-05 11:24:19'),
(4113, 372, '_elementor_source', 'post'),
(4114, 372, '_elementor_edit_mode', 'builder'),
(4115, 372, '_elementor_template_type', 'header'),
(4116, 372, '_elementor_version', '4.1.4'),
(4117, 372, '_elementor_pro_version', '4.1.2'),
(4118, 372, '_elementor_global_class_usage_indexed', '1'),
(4119, 372, '_elementor_global_class_usage_indexed_preview', '1'),
(4120, 372, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4121, 372, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4122, 372, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4251, 383, '_wp_page_template', 'elementor_header_footer'),
(4225, 381, '_wp_page_template', 'elementor_header_footer'),
(4226, 381, '_elementor_edit_mode', 'builder'),
(4227, 381, '_elementor_template_type', 'wp-page'),
(4228, 381, '_elementor_version', '4.1.4'),
(4229, 381, '_elementor_pro_version', '4.1.2'),
(4230, 381, '_elementor_global_class_usage_indexed', '1'),
(4231, 381, '_elementor_global_class_usage_indexed_preview', '1'),
(4232, 381, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4233, 381, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4094, 14, '_elementor_global_class_usage_indexed', '1'),
(4270, 384, '_elementor_global_class_usage_indexed_preview', '1'),
(4271, 384, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4272, 384, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4273, 384, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\\u2019t look even slightly believable. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"14096e64\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"136b273b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"44017637\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4275, 384, '_elementor_page_settings', 'a:0:{}'),
(4063, 368, '_elementor_page_settings', 'a:0:{}'),
(4066, 369, '_wp_page_template', 'elementor_header_footer'),
(4067, 369, '_elementor_edit_mode', 'builder'),
(4068, 369, '_elementor_template_type', 'wp-page'),
(4069, 369, '_elementor_version', '4.1.4'),
(4070, 369, '_elementor_pro_version', '4.1.2'),
(4071, 369, '_elementor_global_class_usage_indexed', '1'),
(4072, 369, '_elementor_global_class_usage_indexed_preview', '1'),
(4073, 369, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4074, 369, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\"},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4076, 369, '_elementor_page_settings', 'a:0:{}'),
(4079, 370, '_wp_page_template', 'elementor_header_footer'),
(4080, 370, '_elementor_edit_mode', 'builder'),
(4081, 370, '_elementor_template_type', 'wp-page'),
(4082, 370, '_elementor_version', '4.1.4'),
(4083, 370, '_elementor_pro_version', '4.1.2'),
(4084, 370, '_elementor_global_class_usage_indexed', '1'),
(4085, 370, '_elementor_global_class_usage_indexed_preview', '1'),
(4086, 370, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4087, 370, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"content_width\":\"full\",\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4414, 395, '_wp_page_template', 'elementor_header_footer'),
(4415, 395, '_elementor_edit_mode', 'builder'),
(4416, 395, '_elementor_template_type', 'wp-page'),
(4417, 395, '_elementor_version', '4.1.4'),
(4418, 395, '_elementor_pro_version', '4.1.2'),
(4419, 395, '_elementor_global_class_usage_indexed', '1'),
(4420, 395, '_elementor_global_class_usage_indexed_preview', '1'),
(4421, 395, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4422, 395, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4265, 384, '_elementor_edit_mode', 'builder'),
(4266, 384, '_elementor_template_type', 'footer'),
(4267, 384, '_elementor_version', '4.1.4'),
(4108, 371, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4128, 373, '_elementor_edit_mode', 'builder'),
(4129, 373, '_elementor_template_type', 'header'),
(4130, 373, '_elementor_version', '4.1.4'),
(4131, 373, '_elementor_pro_version', '4.1.2'),
(4132, 373, '_elementor_global_class_usage_indexed', '1'),
(4133, 373, '_elementor_global_class_usage_indexed_preview', '1'),
(4134, 373, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4135, 373, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4136, 373, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4138, 373, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4141, 374, '_elementor_source', 'post'),
(4142, 374, '_elementor_edit_mode', 'builder'),
(4143, 374, '_elementor_template_type', 'header'),
(4144, 374, '_elementor_version', '4.1.4'),
(4145, 374, '_elementor_pro_version', '4.1.2'),
(4146, 374, '_elementor_global_class_usage_indexed', '1'),
(4147, 374, '_elementor_global_class_usage_indexed_preview', '1'),
(4148, 374, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4149, 374, '_wp_page_template', 'default'),
(4150, 374, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4152, 374, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4155, 375, '_elementor_source', 'post'),
(4156, 375, '_elementor_edit_mode', 'builder'),
(4157, 375, '_elementor_template_type', 'header'),
(4158, 375, '_elementor_version', '4.1.4'),
(4159, 375, '_elementor_pro_version', '4.1.2'),
(4160, 375, '_elementor_global_class_usage_indexed', '1'),
(4161, 375, '_elementor_global_class_usage_indexed_preview', '1'),
(4162, 375, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4163, 375, '_wp_page_template', 'default'),
(4164, 375, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":197,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4166, 375, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4169, 376, '_elementor_source', 'post'),
(4170, 376, '_elementor_edit_mode', 'builder'),
(4171, 376, '_elementor_template_type', 'header'),
(4172, 376, '_elementor_version', '4.1.4'),
(4173, 376, '_elementor_pro_version', '4.1.2'),
(4174, 376, '_elementor_global_class_usage_indexed', '1'),
(4175, 376, '_elementor_global_class_usage_indexed_preview', '1'),
(4176, 376, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4177, 376, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4178, 376, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4180, 376, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4334, 390, '_elementor_source', 'post'),
(4335, 390, '_elementor_edit_mode', 'builder'),
(4336, 390, '_elementor_template_type', 'header'),
(4337, 390, '_elementor_version', '4.1.4'),
(4338, 390, '_elementor_pro_version', '4.1.2'),
(4339, 390, '_elementor_global_class_usage_indexed', '1'),
(4340, 390, '_elementor_global_class_usage_indexed_preview', '1'),
(4341, 390, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4342, 390, '_wp_page_template', 'default'),
(4343, 390, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4352, 391, '_elementor_source', 'post'),
(4353, 391, '_elementor_edit_mode', 'builder'),
(4354, 391, '_elementor_template_type', 'header'),
(4355, 391, '_elementor_version', '4.1.4'),
(4356, 391, '_elementor_pro_version', '4.1.2'),
(4357, 391, '_elementor_global_class_usage_indexed', '1'),
(4358, 391, '_elementor_global_class_usage_indexed_preview', '1'),
(4359, 391, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4360, 391, '_wp_page_template', 'default'),
(4361, 391, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"min_height_mobile\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4185, 377, '_elementor_edit_mode', 'builder'),
(4186, 377, '_elementor_template_type', 'footer'),
(4187, 378, '_elementor_edit_mode', 'builder'),
(4188, 378, '_elementor_template_type', 'footer'),
(4189, 377, '_elementor_version', '4.1.4'),
(4190, 377, '_elementor_pro_version', '4.1.2'),
(4191, 377, '_elementor_global_class_usage_indexed', '1'),
(4192, 377, '_elementor_global_class_usage_indexed_preview', '1'),
(4193, 377, '_astra_content_layout_flag', 'disabled'),
(4195, 377, 'ast-title-bar-display', 'disabled'),
(4196, 377, 'ast-featured-img', 'disabled'),
(4197, 377, 'ast-site-content-layout', 'full-width-container'),
(4198, 377, 'site-sidebar-layout', 'no-sidebar');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4222, 377, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"dcf9c85\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5e370fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Areas We Serve\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7ce9cc\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f76a5d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Serving the Shreveport-Bossier, LA and Homer, LA area\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_color\":\"#f7f1ec\",\"icon_color_hover\":\"#bd9066\",\"text_color\":\"#f7f1ec\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4200, 377, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4201, 377, '_edit_lock', '1783508720:1'),
(5259, 460, '_elementor_edit_mode', 'builder'),
(5260, 460, '_elementor_template_type', 'container'),
(5261, 460, '_elementor_version', '4.1.4'),
(5262, 460, '_elementor_pro_version', '4.1.2'),
(5263, 460, '_elementor_page_settings', 'a:0:{}'),
(5264, 460, '_elementor_global_class_usage_indexed', '1'),
(5265, 460, '_elementor_global_class_usage_indexed_preview', '1'),
(5266, 460, '_elementor_data', '[{\"id\":\"53ecf513\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"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\":\"3bff2e54\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48ca9151\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ae7e48d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19354d73\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c09d319\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"119ed88d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"408ad107\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5aa3e7b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b76924c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5268, 459, '_elementor_controls_usage', 'a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:2;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:14:\"flex_direction\";i:2;s:8:\"flex_gap\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(5269, 459, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5413, 473, '_wp_page_template', 'elementor_header_footer'),
(5415, 473, '_elementor_global_class_usage_indexed', '1'),
(5416, 473, '_elementor_edit_mode', 'builder'),
(5417, 473, '_elementor_template_type', 'wp-page'),
(5418, 473, '_elementor_version', '4.1.4'),
(5419, 473, '_elementor_pro_version', '4.1.2'),
(5420, 473, '_elementor_global_class_usage_indexed_preview', '1'),
(5421, 473, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4248, 382, '_elementor_page_settings', 'a:0:{}'),
(4252, 383, '_elementor_edit_mode', 'builder'),
(4253, 383, '_elementor_template_type', 'wp-page'),
(4254, 383, '_elementor_version', '4.1.4'),
(4255, 383, '_elementor_pro_version', '4.1.2'),
(4256, 383, '_elementor_global_class_usage_indexed', '1'),
(4257, 383, '_elementor_global_class_usage_indexed_preview', '1'),
(4258, 383, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4259, 383, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4289, 386, '_elementor_edit_mode', 'builder'),
(4290, 386, '_elementor_template_type', 'footer'),
(4291, 386, '_elementor_version', '4.1.4'),
(4292, 386, '_elementor_pro_version', '4.1.2'),
(4293, 386, '_elementor_global_class_usage_indexed', '1'),
(4294, 386, '_elementor_global_class_usage_indexed_preview', '1'),
(4295, 386, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4296, 386, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4297, 386, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4288, 377, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4299, 386, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4302, 387, '_elementor_edit_mode', 'builder'),
(4303, 387, '_elementor_template_type', 'footer'),
(4304, 387, '_elementor_version', '4.1.4'),
(4305, 387, '_elementor_pro_version', '4.1.2'),
(4306, 387, '_elementor_global_class_usage_indexed', '1'),
(4307, 387, '_elementor_global_class_usage_indexed_preview', '1'),
(4308, 387, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4309, 387, '_wp_page_template', 'default'),
(4310, 387, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4312, 387, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7976, 680, '_elementor_edit_mode', 'builder'),
(4315, 388, '_elementor_edit_mode', 'builder'),
(4316, 388, '_elementor_template_type', 'footer'),
(4317, 388, '_elementor_version', '4.1.4'),
(4318, 388, '_elementor_pro_version', '4.1.2'),
(4319, 388, '_elementor_global_class_usage_indexed', '1'),
(4320, 388, '_elementor_global_class_usage_indexed_preview', '1'),
(4321, 388, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4322, 388, '_wp_page_template', 'default'),
(4323, 388, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4325, 388, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4628, 413, '_elementor_edit_mode', 'builder'),
(4614, 412, '_elementor_edit_mode', 'builder'),
(4615, 412, '_elementor_template_type', 'footer'),
(4616, 412, '_elementor_version', '4.1.4'),
(4617, 412, '_elementor_pro_version', '4.1.2'),
(4618, 412, '_elementor_global_class_usage_indexed', '1'),
(4619, 412, '_elementor_global_class_usage_indexed_preview', '1'),
(4620, 412, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4621, 412, '_wp_page_template', 'default'),
(4622, 412, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5307, 464, '_wp_page_template', 'elementor_header_footer'),
(5281, 462, '_wp_page_template', 'elementor_header_footer'),
(5282, 462, '_elementor_edit_mode', 'builder'),
(5283, 462, '_elementor_template_type', 'wp-page'),
(5284, 462, '_elementor_version', '4.1.4'),
(5285, 462, '_elementor_pro_version', '4.1.2'),
(5286, 462, '_elementor_global_class_usage_indexed', '1'),
(5287, 462, '_elementor_global_class_usage_indexed_preview', '1'),
(5288, 462, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5289, 462, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5423, 473, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}]},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c7da09\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6739, 581, '_elementor_edit_mode', 'builder'),
(6740, 581, '_elementor_template_type', 'footer'),
(6741, 581, '_elementor_version', '4.1.4'),
(6742, 581, '_elementor_pro_version', '4.1.2'),
(6743, 581, '_elementor_global_class_usage_indexed', '1'),
(6744, 581, '_elementor_global_class_usage_indexed_preview', '1'),
(6745, 581, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6746, 581, '_wp_page_template', 'default'),
(6747, 581, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4332, 389, '_wp_attached_file', '2026/07/breadcrumb-mental.jpg'),
(4333, 389, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:667;s:4:\"file\";s:29:\"2026/07/breadcrumb-mental.jpg\";s:8:\"filesize\";i:115390;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"breadcrumb-mental-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9695;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"breadcrumb-mental-1024x342.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59818;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"breadcrumb-mental-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6783;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"breadcrumb-mental-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38365;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:30:\"breadcrumb-mental-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110002;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(4345, 390, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4596, 411, '_elementor_source', 'post'),
(4597, 411, '_elementor_edit_mode', 'builder'),
(4598, 411, '_elementor_template_type', 'header'),
(4599, 411, '_elementor_version', '4.1.4'),
(4600, 411, '_elementor_pro_version', '4.1.2'),
(4601, 411, '_elementor_global_class_usage_indexed', '1'),
(4602, 411, '_elementor_global_class_usage_indexed_preview', '1'),
(4603, 411, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4604, 411, '_wp_page_template', 'default'),
(4605, 411, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#393939\",\"color_menu_item_hover\":\"#294c4e\",\"color_menu_item_active\":\"#294c4e\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#bd9066\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#294c4e\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#294c4e\",\"toggle_color\":\"#393939\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#393939\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#393939\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#393939\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#CE9F72\",\"close_icon_color_hover\":\"#393939\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"min_height_mobile\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4363, 391, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4645, 414, '_elementor_source', 'post'),
(4646, 414, '_elementor_edit_mode', 'builder'),
(4647, 414, '_elementor_template_type', 'header'),
(4648, 414, '_elementor_version', '4.1.4'),
(4649, 414, '_elementor_pro_version', '4.1.2'),
(4650, 414, '_elementor_global_class_usage_indexed', '1'),
(4651, 414, '_elementor_global_class_usage_indexed_preview', '1'),
(4652, 414, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4653, 414, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4654, 414, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#393939\",\"color_menu_item_hover\":\"#294c4e\",\"color_menu_item_active\":\"#294c4e\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#bd9066\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#294c4e\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#294c4e\",\"toggle_color\":\"#393939\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#393939\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#393939\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#393939\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#CE9F72\",\"close_icon_color_hover\":\"#393939\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"min_height_mobile\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4370, 14, '_elementor_edit_mode', 'builder'),
(4371, 14, '_astra_content_layout_flag', 'disabled'),
(4373, 14, 'ast-title-bar-display', 'disabled'),
(4374, 14, 'ast-featured-img', 'disabled'),
(4375, 14, '_elementor_template_type', 'wp-page'),
(4376, 14, '_elementor_version', '4.1.4'),
(4377, 14, '_elementor_pro_version', '4.1.2'),
(4401, 14, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4379, 14, '_elementor_global_class_usage_indexed_preview', '1'),
(4380, 14, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4381, 392, '_wp_page_template', 'elementor_header_footer'),
(4383, 392, '_elementor_global_class_usage_indexed', '1'),
(4384, 392, '_elementor_edit_mode', 'builder'),
(4385, 392, '_elementor_template_type', 'wp-page'),
(4386, 392, '_elementor_version', '4.1.4'),
(4387, 392, '_elementor_pro_version', '4.1.2'),
(4388, 392, '_elementor_page_settings', 'a:0:{}'),
(4389, 392, '_elementor_global_class_usage_indexed_preview', '1'),
(4390, 392, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4391, 393, '_wp_page_template', 'elementor_header_footer'),
(4393, 393, '_elementor_global_class_usage_indexed', '1'),
(4394, 393, '_elementor_edit_mode', 'builder'),
(4395, 393, '_elementor_template_type', 'wp-page'),
(4396, 393, '_elementor_version', '4.1.4'),
(4397, 393, '_elementor_pro_version', '4.1.2'),
(4398, 393, '_elementor_page_settings', 'a:0:{}'),
(4399, 393, '_elementor_global_class_usage_indexed_preview', '1'),
(4400, 393, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4402, 394, '_wp_page_template', 'elementor_header_footer'),
(4404, 394, '_elementor_global_class_usage_indexed', '1'),
(4405, 394, '_elementor_edit_mode', 'builder'),
(4406, 394, '_elementor_template_type', 'wp-page'),
(4407, 394, '_elementor_version', '4.1.4'),
(4408, 394, '_elementor_pro_version', '4.1.2'),
(4409, 394, '_elementor_global_class_usage_indexed_preview', '1'),
(4410, 394, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4411, 394, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4456, 398, '_wp_page_template', 'elementor_header_footer'),
(4458, 398, '_elementor_global_class_usage_indexed', '1'),
(4459, 398, '_elementor_edit_mode', 'builder'),
(4460, 398, '_elementor_template_type', 'wp-page'),
(4461, 398, '_elementor_version', '4.1.4'),
(4462, 398, '_elementor_pro_version', '4.1.2'),
(4463, 398, '_elementor_global_class_usage_indexed_preview', '1'),
(4464, 398, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4465, 398, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4424, 395, '_elementor_page_settings', 'a:0:{}'),
(4427, 396, '_wp_page_template', 'elementor_header_footer'),
(4428, 396, '_elementor_edit_mode', 'builder'),
(4429, 396, '_elementor_template_type', 'wp-page'),
(4430, 396, '_elementor_version', '4.1.4'),
(4431, 396, '_elementor_pro_version', '4.1.2'),
(4432, 396, '_elementor_global_class_usage_indexed', '1'),
(4433, 396, '_elementor_global_class_usage_indexed_preview', '1'),
(4434, 396, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4435, 396, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4437, 396, '_elementor_page_settings', 'a:0:{}'),
(4440, 397, '_wp_page_template', 'elementor_header_footer'),
(4441, 397, '_elementor_edit_mode', 'builder'),
(4442, 397, '_elementor_template_type', 'wp-page'),
(4443, 397, '_elementor_version', '4.1.4'),
(4444, 397, '_elementor_pro_version', '4.1.2'),
(4445, 397, '_elementor_global_class_usage_indexed', '1'),
(4446, 397, '_elementor_global_class_usage_indexed_preview', '1'),
(4447, 397, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4448, 397, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5322, 465, '_wp_page_template', 'elementor_header_footer'),
(5323, 465, '_elementor_edit_mode', 'builder'),
(5324, 465, '_elementor_template_type', 'wp-page'),
(5325, 465, '_elementor_version', '4.1.4'),
(5326, 465, '_elementor_pro_version', '4.1.2'),
(5327, 465, '_elementor_global_class_usage_indexed', '1'),
(5328, 465, '_elementor_global_class_usage_indexed_preview', '1'),
(5329, 465, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5330, 465, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4466, 398, '_elementor_page_settings', 'a:0:{}'),
(4467, 399, '_wp_page_template', 'elementor_header_footer'),
(4469, 399, '_elementor_global_class_usage_indexed', '1'),
(4470, 399, '_elementor_edit_mode', 'builder'),
(4471, 399, '_elementor_template_type', 'wp-page'),
(4472, 399, '_elementor_version', '4.1.4'),
(4473, 399, '_elementor_pro_version', '4.1.2'),
(4474, 399, '_elementor_global_class_usage_indexed_preview', '1'),
(4475, 399, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4476, 399, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4477, 399, '_elementor_page_settings', 'a:0:{}'),
(10791, 908, '_elementor_global_class_usage_indexed', '1'),
(10792, 908, '_elementor_edit_mode', 'builder'),
(10793, 908, '_elementor_template_type', 'wp-page'),
(10794, 908, '_elementor_version', '4.1.4'),
(10795, 908, '_elementor_pro_version', '4.1.2'),
(10796, 908, '_elementor_global_class_usage_indexed_preview', '1'),
(4512, 403, '_wp_page_template', 'elementor_header_footer'),
(4478, 400, '_wp_page_template', 'elementor_header_footer'),
(4480, 400, '_elementor_global_class_usage_indexed', '1'),
(4481, 400, '_elementor_edit_mode', 'builder'),
(4482, 400, '_elementor_template_type', 'wp-page'),
(4483, 400, '_elementor_version', '4.1.4'),
(4484, 400, '_elementor_pro_version', '4.1.2'),
(4485, 400, '_elementor_global_class_usage_indexed_preview', '1'),
(4486, 400, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4487, 400, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4490, 401, '_wp_page_template', 'elementor_header_footer'),
(4492, 401, '_elementor_global_class_usage_indexed', '1'),
(4493, 401, '_elementor_edit_mode', 'builder'),
(4494, 401, '_elementor_template_type', 'wp-page'),
(4495, 401, '_elementor_version', '4.1.4'),
(4496, 401, '_elementor_pro_version', '4.1.2'),
(4497, 401, '_elementor_global_class_usage_indexed_preview', '1'),
(4498, 401, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4499, 401, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4500, 401, '_elementor_page_settings', 'a:0:{}'),
(4501, 402, '_wp_page_template', 'elementor_header_footer'),
(4503, 402, '_elementor_global_class_usage_indexed', '1'),
(4504, 402, '_elementor_edit_mode', 'builder'),
(4505, 402, '_elementor_template_type', 'wp-page'),
(4506, 402, '_elementor_version', '4.1.4'),
(4507, 402, '_elementor_pro_version', '4.1.2'),
(4508, 402, '_elementor_global_class_usage_indexed_preview', '1'),
(4509, 402, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4510, 402, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4511, 402, '_elementor_page_settings', 'a:0:{}'),
(4514, 403, '_elementor_global_class_usage_indexed', '1'),
(4515, 403, '_elementor_edit_mode', 'builder'),
(4516, 403, '_elementor_template_type', 'wp-page'),
(4517, 403, '_elementor_version', '4.1.4'),
(4518, 403, '_elementor_pro_version', '4.1.2'),
(4519, 403, '_elementor_global_class_usage_indexed_preview', '1'),
(4520, 403, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4521, 403, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4548, 407, '_wp_page_template', 'elementor_header_footer'),
(4526, 405, '_wp_page_template', 'elementor_header_footer'),
(4528, 405, '_elementor_global_class_usage_indexed', '1'),
(4529, 405, '_elementor_edit_mode', 'builder'),
(4530, 405, '_elementor_template_type', 'wp-page'),
(4531, 405, '_elementor_version', '4.1.4'),
(4532, 405, '_elementor_pro_version', '4.1.2'),
(4533, 405, '_elementor_global_class_usage_indexed_preview', '1'),
(4534, 405, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4535, 405, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4524, 404, '_wp_attached_file', '2026/07/Compassionate-care-mental.jpg'),
(4525, 404, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:665;s:4:\"file\";s:37:\"2026/07/Compassionate-care-mental.jpg\";s:8:\"filesize\";i:85575;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Compassionate-care-mental-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Compassionate-care-mental-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9040;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Compassionate-care-mental-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81873;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(4536, 405, '_elementor_page_settings', 'a:0:{}'),
(4537, 406, '_wp_page_template', 'elementor_header_footer'),
(4539, 406, '_elementor_global_class_usage_indexed', '1'),
(4540, 406, '_elementor_edit_mode', 'builder'),
(4541, 406, '_elementor_template_type', 'wp-page'),
(4542, 406, '_elementor_version', '4.1.4'),
(4543, 406, '_elementor_pro_version', '4.1.2'),
(4544, 406, '_elementor_global_class_usage_indexed_preview', '1'),
(4545, 406, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4546, 406, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-mental.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4547, 406, '_elementor_page_settings', 'a:0:{}'),
(4550, 407, '_elementor_global_class_usage_indexed', '1'),
(4551, 407, '_elementor_edit_mode', 'builder'),
(4552, 407, '_elementor_template_type', 'wp-page'),
(4553, 407, '_elementor_version', '4.1.4'),
(4554, 407, '_elementor_pro_version', '4.1.2'),
(4555, 407, '_elementor_global_class_usage_indexed_preview', '1'),
(4556, 407, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4557, 407, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4582, 410, '_wp_page_template', 'elementor_header_footer'),
(4560, 408, '_wp_page_template', 'elementor_header_footer'),
(4562, 408, '_elementor_global_class_usage_indexed', '1'),
(4563, 408, '_elementor_edit_mode', 'builder'),
(4564, 408, '_elementor_template_type', 'wp-page'),
(4565, 408, '_elementor_version', '4.1.4'),
(4566, 408, '_elementor_pro_version', '4.1.2'),
(4567, 408, '_elementor_global_class_usage_indexed_preview', '1'),
(4568, 408, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4569, 408, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4570, 408, '_elementor_page_settings', 'a:0:{}'),
(4571, 409, '_wp_page_template', 'elementor_header_footer'),
(4573, 409, '_elementor_global_class_usage_indexed', '1'),
(4574, 409, '_elementor_edit_mode', 'builder'),
(4575, 409, '_elementor_template_type', 'wp-page'),
(4576, 409, '_elementor_version', '4.1.4'),
(4577, 409, '_elementor_pro_version', '4.1.2'),
(4578, 409, '_elementor_global_class_usage_indexed_preview', '1'),
(4579, 409, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4580, 409, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4581, 409, '_elementor_page_settings', 'a:0:{}'),
(4584, 410, '_elementor_global_class_usage_indexed', '1'),
(4585, 410, '_elementor_edit_mode', 'builder'),
(4586, 410, '_elementor_template_type', 'wp-page'),
(4587, 410, '_elementor_version', '4.1.4'),
(4588, 410, '_elementor_pro_version', '4.1.2'),
(4589, 410, '_elementor_global_class_usage_indexed_preview', '1'),
(4590, 410, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4591, 410, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6819, 587, '_wp_page_template', 'elementor_header_footer'),
(6793, 585, '_wp_page_template', 'elementor_header_footer'),
(6795, 585, '_elementor_global_class_usage_indexed', '1'),
(6796, 585, '_elementor_edit_mode', 'builder'),
(6797, 585, '_elementor_template_type', 'wp-page'),
(6798, 585, '_elementor_version', '4.1.4'),
(6799, 585, '_elementor_pro_version', '4.1.2'),
(6800, 585, '_elementor_global_class_usage_indexed_preview', '1'),
(6801, 585, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6802, 585, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8427, 719, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:26:\"2026/07/Our-Mission-av.jpg\";s:8:\"filesize\";i:56311;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Our-Mission-av-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13780;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Our-Mission-av-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6632;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Our-Mission-av-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55293;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8412, 718, '_wp_page_template', 'elementor_header_footer'),
(8386, 716, '_wp_page_template', 'elementor_header_footer'),
(8388, 716, '_elementor_global_class_usage_indexed', '1'),
(8389, 716, '_elementor_edit_mode', 'builder'),
(8390, 716, '_elementor_template_type', 'wp-page'),
(8391, 716, '_elementor_version', '4.1.4'),
(8392, 716, '_elementor_pro_version', '4.1.2'),
(8393, 716, '_elementor_global_class_usage_indexed_preview', '1'),
(8394, 716, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8395, 716, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4607, 411, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8049, 685, '_elementor_source', 'post'),
(8050, 685, '_elementor_edit_mode', 'builder'),
(8051, 685, '_elementor_template_type', 'header'),
(8052, 685, '_elementor_version', '4.1.4'),
(8053, 685, '_elementor_pro_version', '4.1.2'),
(8054, 685, '_elementor_global_class_usage_indexed', '1'),
(8055, 685, '_elementor_global_class_usage_indexed_preview', '1'),
(8056, 685, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8057, 685, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8058, 685, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#393939\",\"color_menu_item_hover\":\"#294c4e\",\"color_menu_item_active\":\"#294c4e\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#bd9066\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#294c4e\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#294c4e\",\"toggle_color\":\"#393939\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#393939\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#393939\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#393939\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#CE9F72\",\"close_icon_color_hover\":\"#393939\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"min_height_mobile\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4624, 412, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(4625, 412, '_elementor_page_settings', 'a:0:{}'),
(4629, 413, '_elementor_template_type', 'footer'),
(4630, 413, '_elementor_version', '4.1.4'),
(4631, 413, '_elementor_pro_version', '4.1.2'),
(4632, 413, '_elementor_global_class_usage_indexed', '1'),
(4633, 413, '_elementor_global_class_usage_indexed_preview', '1'),
(4634, 413, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4635, 413, '_wp_page_template', 'default'),
(4636, 413, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4638, 413, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7977, 680, '_elementor_template_type', 'footer'),
(7978, 680, '_elementor_version', '4.1.4'),
(7979, 680, '_elementor_pro_version', '4.1.2'),
(7980, 680, '_elementor_global_class_usage_indexed', '1'),
(7981, 680, '_elementor_global_class_usage_indexed_preview', '1'),
(7982, 680, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7983, 680, '_wp_page_template', 'default'),
(7984, 680, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"300 Murrell Street Homer, LA 71040\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4656, 414, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10352, 877, '_elementor_source', 'post'),
(10353, 877, '_elementor_edit_mode', 'builder'),
(10354, 877, '_elementor_template_type', 'header'),
(10355, 877, '_elementor_version', '4.1.4'),
(10356, 877, '_elementor_pro_version', '4.1.2'),
(10357, 877, '_elementor_global_class_usage_indexed', '1'),
(10358, 877, '_elementor_global_class_usage_indexed_preview', '1'),
(10359, 877, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10360, 877, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10361, 877, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#393939\",\"color_menu_item_hover\":\"#294c4e\",\"color_menu_item_active\":\"#294c4e\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#bd9066\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#294c4e\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#294c4e\",\"toggle_color\":\"#393939\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#393939\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#393939\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#393939\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#CE9F72\",\"close_icon_color_hover\":\"#393939\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"min_height_mobile\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(4663, 18, '_elementor_edit_mode', 'builder'),
(4664, 18, '_astra_content_layout_flag', 'disabled'),
(4666, 18, 'ast-title-bar-display', 'disabled'),
(4667, 18, 'ast-featured-img', 'disabled'),
(4668, 18, '_elementor_template_type', 'wp-page'),
(4671, 18, '_elementor_version', '4.1.4'),
(4672, 18, '_elementor_pro_version', '4.1.2'),
(4703, 18, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b36888\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4680, 18, '_elementor_global_class_usage_indexed_preview', '1'),
(4682, 18, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4683, 416, '_wp_page_template', 'elementor_header_footer'),
(4685, 416, '_elementor_global_class_usage_indexed', '1'),
(4686, 416, '_elementor_edit_mode', 'builder'),
(4687, 416, '_elementor_template_type', 'wp-page'),
(4688, 416, '_elementor_version', '4.1.4'),
(4689, 416, '_elementor_pro_version', '4.1.2'),
(4690, 416, '_elementor_page_settings', 'a:0:{}'),
(4691, 416, '_elementor_global_class_usage_indexed_preview', '1'),
(4692, 416, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4693, 417, '_wp_page_template', 'elementor_header_footer'),
(4695, 417, '_elementor_global_class_usage_indexed', '1'),
(4696, 417, '_elementor_edit_mode', 'builder'),
(4697, 417, '_elementor_template_type', 'wp-page'),
(4698, 417, '_elementor_version', '4.1.4'),
(4699, 417, '_elementor_pro_version', '4.1.2'),
(4700, 417, '_elementor_page_settings', 'a:0:{}'),
(4701, 417, '_elementor_global_class_usage_indexed_preview', '1'),
(4702, 417, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4704, 418, '_wp_page_template', 'default'),
(4706, 418, '_elementor_global_class_usage_indexed', '1'),
(4707, 418, '_elementor_edit_mode', 'builder'),
(4708, 418, '_elementor_template_type', 'wp-page'),
(4709, 418, '_elementor_version', '4.1.4'),
(4710, 418, '_elementor_pro_version', '4.1.2'),
(4711, 418, '_elementor_global_class_usage_indexed_preview', '1'),
(4712, 418, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4713, 418, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4728, 420, '_wp_page_template', 'default'),
(4730, 420, '_elementor_global_class_usage_indexed', '1'),
(4731, 420, '_elementor_edit_mode', 'builder'),
(4732, 420, '_elementor_template_type', 'wp-page'),
(4733, 420, '_elementor_version', '4.1.4'),
(4734, 420, '_elementor_pro_version', '4.1.2'),
(4735, 420, '_elementor_global_class_usage_indexed_preview', '1'),
(4736, 420, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4737, 420, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4758, 422, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4759, 422, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4750, 422, '_wp_page_template', 'default'),
(4752, 422, '_elementor_global_class_usage_indexed', '1'),
(4753, 422, '_elementor_edit_mode', 'builder'),
(4754, 422, '_elementor_template_type', 'wp-page'),
(4755, 422, '_elementor_version', '4.1.4'),
(4756, 422, '_elementor_pro_version', '4.1.2'),
(4757, 422, '_elementor_global_class_usage_indexed_preview', '1'),
(4738, 420, '_elementor_page_settings', 'a:0:{}'),
(4739, 421, '_wp_page_template', 'default'),
(4741, 421, '_elementor_global_class_usage_indexed', '1'),
(4742, 421, '_elementor_edit_mode', 'builder'),
(4743, 421, '_elementor_template_type', 'wp-page'),
(4744, 421, '_elementor_version', '4.1.4'),
(4745, 421, '_elementor_pro_version', '4.1.2'),
(4746, 421, '_elementor_global_class_usage_indexed_preview', '1'),
(4747, 421, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4748, 421, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4749, 421, '_elementor_page_settings', 'a:0:{}'),
(4762, 423, '_wp_page_template', 'default'),
(4764, 423, '_elementor_global_class_usage_indexed', '1'),
(4765, 423, '_elementor_edit_mode', 'builder'),
(4766, 423, '_elementor_template_type', 'wp-page'),
(4767, 423, '_elementor_version', '4.1.4'),
(4768, 423, '_elementor_pro_version', '4.1.2'),
(4769, 423, '_elementor_global_class_usage_indexed_preview', '1'),
(4770, 423, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4771, 423, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4772, 423, '_elementor_page_settings', 'a:0:{}'),
(4773, 424, '_wp_page_template', 'default'),
(4775, 424, '_elementor_global_class_usage_indexed', '1'),
(4776, 424, '_elementor_edit_mode', 'builder'),
(4777, 424, '_elementor_template_type', 'wp-page'),
(4778, 424, '_elementor_version', '4.1.4'),
(4779, 424, '_elementor_pro_version', '4.1.2'),
(4780, 424, '_elementor_global_class_usage_indexed_preview', '1'),
(4781, 424, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4782, 424, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}]},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4783, 424, '_elementor_page_settings', 'a:0:{}'),
(4784, 425, '_wp_page_template', 'default'),
(4786, 425, '_elementor_global_class_usage_indexed', '1'),
(4787, 425, '_elementor_edit_mode', 'builder'),
(4788, 425, '_elementor_template_type', 'wp-page'),
(4789, 425, '_elementor_version', '4.1.4'),
(4790, 425, '_elementor_pro_version', '4.1.2'),
(4791, 425, '_elementor_global_class_usage_indexed_preview', '1'),
(4792, 425, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4793, 425, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4796, 426, '_wp_page_template', 'default'),
(4798, 426, '_elementor_global_class_usage_indexed', '1'),
(4799, 426, '_elementor_edit_mode', 'builder'),
(4800, 426, '_elementor_template_type', 'wp-page'),
(4801, 426, '_elementor_version', '4.1.4'),
(4802, 426, '_elementor_pro_version', '4.1.2'),
(4803, 426, '_elementor_global_class_usage_indexed_preview', '1'),
(4804, 426, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4805, 426, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4806, 426, '_elementor_page_settings', 'a:0:{}'),
(4807, 427, '_wp_page_template', 'default'),
(4809, 427, '_elementor_global_class_usage_indexed', '1'),
(4810, 427, '_elementor_edit_mode', 'builder'),
(4811, 427, '_elementor_template_type', 'wp-page'),
(4812, 427, '_elementor_version', '4.1.4'),
(4813, 427, '_elementor_pro_version', '4.1.2'),
(4814, 427, '_elementor_global_class_usage_indexed_preview', '1'),
(4815, 427, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4816, 427, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4817, 427, '_elementor_page_settings', 'a:0:{}'),
(4818, 428, '_wp_page_template', 'default'),
(4820, 428, '_elementor_global_class_usage_indexed', '1'),
(4821, 428, '_elementor_edit_mode', 'builder'),
(4822, 428, '_elementor_template_type', 'wp-page'),
(4823, 428, '_elementor_version', '4.1.4'),
(4824, 428, '_elementor_pro_version', '4.1.2'),
(4825, 428, '_elementor_global_class_usage_indexed_preview', '1'),
(4826, 428, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4827, 428, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4832, 429, '_wp_page_template', 'default'),
(4834, 429, '_elementor_global_class_usage_indexed', '1'),
(4835, 429, '_elementor_edit_mode', 'builder'),
(4836, 429, '_elementor_template_type', 'wp-page'),
(4837, 429, '_elementor_version', '4.1.4'),
(4838, 429, '_elementor_pro_version', '4.1.2'),
(4839, 429, '_elementor_global_class_usage_indexed_preview', '1'),
(4840, 429, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4841, 429, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5155, 452, '_wp_page_template', 'default'),
(5115, 449, '_wp_page_template', 'default'),
(5117, 449, '_elementor_global_class_usage_indexed', '1'),
(5118, 449, '_elementor_edit_mode', 'builder'),
(5119, 449, '_elementor_template_type', 'wp-page'),
(5120, 449, '_elementor_version', '4.1.4'),
(5121, 449, '_elementor_pro_version', '4.1.2'),
(5122, 449, '_elementor_global_class_usage_indexed_preview', '1'),
(5123, 449, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5124, 449, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4842, 429, '_elementor_page_settings', 'a:0:{}'),
(4845, 430, '_wp_page_template', 'default'),
(4847, 430, '_elementor_global_class_usage_indexed', '1'),
(4848, 430, '_elementor_edit_mode', 'builder'),
(4849, 430, '_elementor_template_type', 'wp-page'),
(4850, 430, '_elementor_version', '4.1.4'),
(4851, 430, '_elementor_pro_version', '4.1.2'),
(4852, 430, '_elementor_global_class_usage_indexed_preview', '1'),
(4853, 430, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4854, 430, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}]},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4855, 430, '_elementor_page_settings', 'a:0:{}'),
(4858, 431, '_wp_page_template', 'default'),
(4860, 431, '_elementor_global_class_usage_indexed', '1'),
(4861, 431, '_elementor_edit_mode', 'builder'),
(4862, 431, '_elementor_template_type', 'wp-page'),
(4863, 431, '_elementor_version', '4.1.4'),
(4864, 431, '_elementor_pro_version', '4.1.2'),
(4865, 431, '_elementor_global_class_usage_indexed_preview', '1'),
(4866, 431, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4867, 431, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5157, 452, '_elementor_global_class_usage_indexed', '1'),
(5158, 452, '_elementor_edit_mode', 'builder'),
(5159, 452, '_elementor_template_type', 'wp-page'),
(5160, 452, '_elementor_version', '4.1.4'),
(5161, 452, '_elementor_pro_version', '4.1.2'),
(5162, 452, '_elementor_global_class_usage_indexed_preview', '1'),
(5163, 452, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5164, 452, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4874, 20, '_elementor_edit_mode', 'builder'),
(4875, 20, '_astra_content_layout_flag', 'disabled'),
(4877, 20, 'ast-title-bar-display', 'disabled'),
(4878, 20, 'ast-featured-img', 'disabled'),
(4879, 20, '_elementor_template_type', 'wp-page'),
(4880, 20, '_elementor_version', '4.1.4'),
(4881, 20, '_elementor_pro_version', '4.1.2'),
(4905, 20, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"846f422\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4883, 20, '_elementor_global_class_usage_indexed_preview', '1'),
(4884, 20, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4885, 432, '_wp_page_template', 'elementor_header_footer'),
(4887, 432, '_elementor_global_class_usage_indexed', '1'),
(4888, 432, '_elementor_edit_mode', 'builder'),
(4889, 432, '_elementor_template_type', 'wp-page'),
(4890, 432, '_elementor_version', '4.1.4'),
(4891, 432, '_elementor_pro_version', '4.1.2'),
(4892, 432, '_elementor_page_settings', 'a:0:{}'),
(4893, 432, '_elementor_global_class_usage_indexed_preview', '1'),
(4894, 432, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4895, 433, '_wp_page_template', 'elementor_header_footer'),
(4897, 433, '_elementor_global_class_usage_indexed', '1'),
(4898, 433, '_elementor_edit_mode', 'builder'),
(4899, 433, '_elementor_template_type', 'wp-page'),
(4900, 433, '_elementor_version', '4.1.4'),
(4901, 433, '_elementor_pro_version', '4.1.2'),
(4902, 433, '_elementor_page_settings', 'a:0:{}'),
(4903, 433, '_elementor_global_class_usage_indexed_preview', '1'),
(4904, 433, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4906, 434, '_wp_page_template', 'elementor_header_footer'),
(4908, 434, '_elementor_global_class_usage_indexed', '1'),
(4909, 434, '_elementor_edit_mode', 'builder'),
(4910, 434, '_elementor_template_type', 'wp-page'),
(4911, 434, '_elementor_version', '4.1.4'),
(4912, 434, '_elementor_pro_version', '4.1.2'),
(4913, 434, '_elementor_global_class_usage_indexed_preview', '1'),
(4914, 434, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4915, 434, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6610, 571, '_wp_page_template', 'elementor_header_footer'),
(6612, 571, '_elementor_global_class_usage_indexed', '1'),
(6613, 571, '_elementor_edit_mode', 'builder'),
(6614, 571, '_elementor_template_type', 'wp-page'),
(6615, 571, '_elementor_version', '4.1.4'),
(6616, 571, '_elementor_pro_version', '4.1.2'),
(6617, 571, '_elementor_global_class_usage_indexed_preview', '1'),
(6618, 571, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6619, 571, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(11113, 18, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:5:{i:0;s:12:\"widget-image\";i:1;s:22:\"e-animation-fadeInLeft\";i:2;s:14:\"widget-heading\";i:3;s:23:\"e-animation-fadeInRight\";i:4;s:20:\"e-animation-fadeInUp\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(10312, 874, '_wp_page_template', 'elementor_header_footer'),
(10314, 874, '_elementor_global_class_usage_indexed', '1'),
(10315, 874, '_elementor_edit_mode', 'builder'),
(10316, 874, '_elementor_template_type', 'wp-page'),
(10317, 874, '_elementor_version', '4.1.4'),
(10318, 874, '_elementor_pro_version', '4.1.2'),
(10319, 874, '_elementor_global_class_usage_indexed_preview', '1'),
(10320, 874, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10321, 874, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10536, 890, '_wp_page_template', 'elementor_header_footer'),
(4920, 22, '_elementor_edit_mode', 'builder'),
(4921, 22, '_astra_content_layout_flag', 'disabled'),
(4923, 22, 'ast-title-bar-display', 'disabled'),
(4924, 22, 'ast-featured-img', 'disabled'),
(4925, 22, '_elementor_template_type', 'wp-page'),
(4970, 438, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4928, 22, '_elementor_version', '4.1.4'),
(4929, 22, '_elementor_pro_version', '4.1.2');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4961, 22, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $75\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbdee36\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4969, 438, '_elementor_global_class_usage_indexed_preview', '1'),
(4968, 438, '_elementor_pro_version', '4.1.2'),
(4967, 438, '_elementor_version', '4.1.4'),
(4966, 438, '_elementor_template_type', 'wp-page'),
(4937, 22, '_elementor_global_class_usage_indexed_preview', '1'),
(4939, 22, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7711, 659, '_wp_page_template', 'default'),
(4962, 438, '_wp_page_template', 'default'),
(4964, 438, '_elementor_global_class_usage_indexed', '1'),
(4965, 438, '_elementor_edit_mode', 'builder'),
(4941, 436, '_wp_page_template', 'elementor_header_footer'),
(4943, 436, '_elementor_global_class_usage_indexed', '1'),
(4944, 436, '_elementor_edit_mode', 'builder'),
(4945, 436, '_elementor_template_type', 'wp-page'),
(4946, 436, '_elementor_version', '4.1.4'),
(4947, 436, '_elementor_pro_version', '4.1.2'),
(4948, 436, '_elementor_page_settings', 'a:0:{}'),
(4949, 436, '_elementor_global_class_usage_indexed_preview', '1'),
(4950, 436, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4951, 437, '_wp_page_template', 'elementor_header_footer'),
(4953, 437, '_elementor_global_class_usage_indexed', '1'),
(4954, 437, '_elementor_edit_mode', 'builder'),
(4955, 437, '_elementor_template_type', 'wp-page'),
(4956, 437, '_elementor_version', '4.1.4'),
(4957, 437, '_elementor_pro_version', '4.1.2'),
(4958, 437, '_elementor_page_settings', 'a:0:{}'),
(4959, 437, '_elementor_global_class_usage_indexed_preview', '1'),
(4960, 437, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4971, 438, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Achieve sustainable results through personalized, science-based care.\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\\n<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Medical Weight Management<\\/li>\\n \\t<li>GLP-1 Therapy (when appropriate)<\\/li>\\n \\t<li>Metabolic Health Optimization<\\/li>\\n \\t<li>Personalized Nutrition Guidance<\\/li>\\n \\t<li>Lifestyle &amp; Habit Coaching<\\/li>\\n \\t<li>Hormone Evaluation<\\/li>\\n \\t<li>Ongoing Accountability &amp; Support<\\/li>\\n<\\/ul>\\nHelping you lose weight, gain confidence, and build lasting health.\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5002, 441, '_wp_page_template', 'default'),
(4976, 439, '_wp_page_template', 'default'),
(4978, 439, '_elementor_global_class_usage_indexed', '1'),
(4979, 439, '_elementor_edit_mode', 'builder'),
(4980, 439, '_elementor_template_type', 'wp-page'),
(4981, 439, '_elementor_version', '4.1.4'),
(4982, 439, '_elementor_pro_version', '4.1.2'),
(4983, 439, '_elementor_global_class_usage_indexed_preview', '1'),
(4984, 439, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4985, 439, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Achieve sustainable results through personalized, science-based care.\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\\n<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Medical Weight Management<\\/li>\\n \\t<li>GLP-1 Therapy (when appropriate)<\\/li>\\n \\t<li>Metabolic Health Optimization<\\/li>\\n \\t<li>Personalized Nutrition Guidance<\\/li>\\n \\t<li>Lifestyle &amp; Habit Coaching<\\/li>\\n \\t<li>Hormone Evaluation<\\/li>\\n \\t<li>Ongoing Accountability &amp; Support<\\/li>\\n<\\/ul>\\nHelping you lose weight, gain confidence, and build lasting health.\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5036, 443, '_wp_page_template', 'elementor_header_footer'),
(7685, 657, '_wp_page_template', 'default'),
(7687, 657, '_elementor_global_class_usage_indexed', '1'),
(7688, 657, '_elementor_edit_mode', 'builder'),
(7689, 657, '_elementor_template_type', 'wp-page'),
(7690, 657, '_elementor_version', '4.1.4'),
(7691, 657, '_elementor_pro_version', '4.1.2'),
(7692, 657, '_elementor_global_class_usage_indexed_preview', '1'),
(7693, 657, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7694, 657, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5016, 24, '_elementor_edit_mode', 'builder'),
(5017, 24, '_astra_content_layout_flag', 'disabled'),
(5056, 24, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acute Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a757522\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(5019, 24, 'ast-title-bar-display', 'disabled'),
(5020, 24, 'ast-featured-img', 'disabled'),
(5021, 24, '_elementor_template_type', 'wp-page'),
(5024, 24, '_elementor_version', '4.1.4'),
(5025, 24, '_elementor_pro_version', '4.1.2'),
(5033, 24, '_elementor_global_class_usage_indexed_preview', '1'),
(5035, 24, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4986, 439, '_elementor_page_settings', 'a:0:{}'),
(4989, 440, '_wp_page_template', 'default'),
(4991, 440, '_elementor_global_class_usage_indexed', '1'),
(4992, 440, '_elementor_edit_mode', 'builder'),
(4993, 440, '_elementor_template_type', 'wp-page'),
(4994, 440, '_elementor_version', '4.1.4'),
(4995, 440, '_elementor_pro_version', '4.1.2'),
(4996, 440, '_elementor_global_class_usage_indexed_preview', '1'),
(4997, 440, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(4998, 440, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Achieve sustainable results through personalized, science-based care.\\n\\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.\\n<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Medical Weight Management<\\/li>\\n \\t<li>GLP-1 Therapy (when appropriate)<\\/li>\\n \\t<li>Metabolic Health Optimization<\\/li>\\n \\t<li>Personalized Nutrition Guidance<\\/li>\\n \\t<li>Lifestyle &amp; Habit Coaching<\\/li>\\n \\t<li>Hormone Evaluation<\\/li>\\n \\t<li>Ongoing Accountability &amp; Support<\\/li>\\n<\\/ul>\\nHelping you lose weight, gain confidence, and build lasting health.\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4999, 440, '_elementor_page_settings', 'a:0:{}'),
(5004, 441, '_elementor_global_class_usage_indexed', '1'),
(5005, 441, '_elementor_edit_mode', 'builder'),
(5006, 441, '_elementor_template_type', 'wp-page'),
(5007, 441, '_elementor_version', '4.1.4'),
(5008, 441, '_elementor_pro_version', '4.1.2'),
(5009, 441, '_elementor_global_class_usage_indexed_preview', '1'),
(5010, 441, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5011, 441, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5038, 443, '_elementor_global_class_usage_indexed', '1'),
(5039, 443, '_elementor_edit_mode', 'builder'),
(5040, 443, '_elementor_template_type', 'wp-page'),
(5041, 443, '_elementor_version', '4.1.4'),
(5042, 443, '_elementor_pro_version', '4.1.2'),
(5043, 443, '_elementor_page_settings', 'a:0:{}'),
(5044, 443, '_elementor_global_class_usage_indexed_preview', '1'),
(5045, 443, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5046, 444, '_wp_page_template', 'elementor_header_footer'),
(5048, 444, '_elementor_global_class_usage_indexed', '1'),
(5049, 444, '_elementor_edit_mode', 'builder'),
(5050, 444, '_elementor_template_type', 'wp-page'),
(5051, 444, '_elementor_version', '4.1.4'),
(5052, 444, '_elementor_pro_version', '4.1.2'),
(5053, 444, '_elementor_page_settings', 'a:0:{}'),
(5054, 444, '_elementor_global_class_usage_indexed_preview', '1'),
(5055, 444, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5057, 445, '_wp_page_template', 'default'),
(5059, 445, '_elementor_global_class_usage_indexed', '1'),
(5060, 445, '_elementor_edit_mode', 'builder'),
(5061, 445, '_elementor_template_type', 'wp-page'),
(5062, 445, '_elementor_version', '4.1.4'),
(5063, 445, '_elementor_pro_version', '4.1.2'),
(5064, 445, '_elementor_global_class_usage_indexed_preview', '1'),
(5065, 445, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5066, 445, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns &amp; Sprains<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6875, 591, '_wp_page_template', 'default'),
(6851, 589, '_wp_page_template', 'default'),
(6853, 589, '_elementor_global_class_usage_indexed', '1'),
(6854, 589, '_elementor_edit_mode', 'builder'),
(6855, 589, '_elementor_template_type', 'wp-page'),
(6856, 589, '_elementor_version', '4.1.4'),
(6857, 589, '_elementor_pro_version', '4.1.2'),
(6858, 589, '_elementor_global_class_usage_indexed_preview', '1'),
(6859, 589, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6860, 589, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns &amp; Sprains<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6918, 595, '_wp_page_template', 'default'),
(6892, 593, '_wp_page_template', 'default'),
(6894, 593, '_elementor_global_class_usage_indexed', '1'),
(6895, 593, '_elementor_edit_mode', 'builder'),
(6896, 593, '_elementor_template_type', 'wp-page'),
(6897, 593, '_elementor_version', '4.1.4'),
(6898, 593, '_elementor_pro_version', '4.1.2'),
(6899, 593, '_elementor_global_class_usage_indexed_preview', '1'),
(6900, 593, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6901, 593, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5071, 26, '_elementor_edit_mode', 'builder'),
(5072, 26, '_astra_content_layout_flag', 'disabled'),
(5074, 26, 'ast-title-bar-display', 'disabled'),
(5075, 26, 'ast-featured-img', 'disabled'),
(5076, 26, '_elementor_template_type', 'wp-page'),
(5077, 26, '_elementor_version', '4.1.4'),
(5078, 26, '_elementor_pro_version', '4.1.2'),
(5102, 26, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9bdec69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(5080, 26, '_elementor_global_class_usage_indexed_preview', '1'),
(5081, 26, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5082, 446, '_wp_page_template', 'elementor_header_footer'),
(5084, 446, '_elementor_global_class_usage_indexed', '1'),
(5085, 446, '_elementor_edit_mode', 'builder'),
(5086, 446, '_elementor_template_type', 'wp-page'),
(5087, 446, '_elementor_version', '4.1.4'),
(5088, 446, '_elementor_pro_version', '4.1.2'),
(5089, 446, '_elementor_page_settings', 'a:0:{}'),
(5090, 446, '_elementor_global_class_usage_indexed_preview', '1'),
(5091, 446, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5092, 447, '_wp_page_template', 'elementor_header_footer'),
(5094, 447, '_elementor_global_class_usage_indexed', '1'),
(5095, 447, '_elementor_edit_mode', 'builder'),
(5096, 447, '_elementor_template_type', 'wp-page');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5097, 447, '_elementor_version', '4.1.4'),
(5098, 447, '_elementor_pro_version', '4.1.2'),
(5099, 447, '_elementor_page_settings', 'a:0:{}'),
(5100, 447, '_elementor_global_class_usage_indexed_preview', '1'),
(5101, 447, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5103, 448, '_wp_page_template', 'elementor_header_footer'),
(5105, 448, '_elementor_global_class_usage_indexed', '1'),
(5106, 448, '_elementor_edit_mode', 'builder'),
(5107, 448, '_elementor_template_type', 'wp-page'),
(5108, 448, '_elementor_version', '4.1.4'),
(5109, 448, '_elementor_pro_version', '4.1.2'),
(5110, 448, '_elementor_global_class_usage_indexed_preview', '1'),
(5111, 448, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5112, 448, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8534, 729, '_wp_page_template', 'elementor_header_footer'),
(8508, 727, '_wp_page_template', 'elementor_header_footer'),
(8510, 727, '_elementor_global_class_usage_indexed', '1'),
(8511, 727, '_elementor_edit_mode', 'builder'),
(8512, 727, '_elementor_template_type', 'wp-page'),
(8513, 727, '_elementor_version', '4.1.4'),
(8514, 727, '_elementor_pro_version', '4.1.2'),
(8515, 727, '_elementor_global_class_usage_indexed_preview', '1'),
(8516, 727, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8517, 727, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5125, 449, '_elementor_page_settings', 'a:0:{}'),
(5128, 450, '_wp_page_template', 'default'),
(5130, 450, '_elementor_global_class_usage_indexed', '1'),
(5131, 450, '_elementor_edit_mode', 'builder'),
(5132, 450, '_elementor_template_type', 'wp-page'),
(5133, 450, '_elementor_version', '4.1.4'),
(5134, 450, '_elementor_pro_version', '4.1.2'),
(5135, 450, '_elementor_global_class_usage_indexed_preview', '1'),
(5136, 450, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5137, 450, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5138, 450, '_elementor_page_settings', 'a:0:{}'),
(5177, 454, '_wp_page_template', 'default'),
(5141, 451, '_wp_page_template', 'default'),
(5143, 451, '_elementor_global_class_usage_indexed', '1'),
(5144, 451, '_elementor_edit_mode', 'builder'),
(5145, 451, '_elementor_template_type', 'wp-page'),
(5146, 451, '_elementor_version', '4.1.4'),
(5147, 451, '_elementor_pro_version', '4.1.2'),
(5148, 451, '_elementor_global_class_usage_indexed_preview', '1'),
(5149, 451, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5150, 451, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5165, 452, '_elementor_page_settings', 'a:0:{}'),
(5166, 453, '_wp_page_template', 'default'),
(5168, 453, '_elementor_global_class_usage_indexed', '1'),
(5169, 453, '_elementor_edit_mode', 'builder'),
(5170, 453, '_elementor_template_type', 'wp-page'),
(5171, 453, '_elementor_version', '4.1.4'),
(5172, 453, '_elementor_pro_version', '4.1.2'),
(5173, 453, '_elementor_global_class_usage_indexed_preview', '1'),
(5174, 453, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5175, 453, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5176, 453, '_elementor_page_settings', 'a:0:{}'),
(5179, 454, '_elementor_global_class_usage_indexed', '1'),
(5180, 454, '_elementor_edit_mode', 'builder'),
(5181, 454, '_elementor_template_type', 'wp-page'),
(5182, 454, '_elementor_version', '4.1.4'),
(5183, 454, '_elementor_pro_version', '4.1.2'),
(5184, 454, '_elementor_global_class_usage_indexed_preview', '1'),
(5185, 454, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5186, 454, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5219, 458, '_wp_page_template', 'default'),
(5193, 456, '_wp_page_template', 'default'),
(5195, 456, '_elementor_global_class_usage_indexed', '1'),
(5196, 456, '_elementor_edit_mode', 'builder'),
(5197, 456, '_elementor_template_type', 'wp-page'),
(5198, 456, '_elementor_version', '4.1.4'),
(5199, 456, '_elementor_pro_version', '4.1.2'),
(5200, 456, '_elementor_global_class_usage_indexed_preview', '1'),
(5201, 456, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5202, 456, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6596, 570, '_wp_page_template', 'default'),
(6570, 568, '_wp_page_template', 'default'),
(6572, 568, '_elementor_global_class_usage_indexed', '1'),
(6573, 568, '_elementor_edit_mode', 'builder'),
(6574, 568, '_elementor_template_type', 'wp-page'),
(6575, 568, '_elementor_version', '4.1.4'),
(6576, 568, '_elementor_pro_version', '4.1.2'),
(6577, 568, '_elementor_global_class_usage_indexed_preview', '1'),
(6578, 568, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6579, 568, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6620, 571, '_elementor_page_settings', 'a:0:{}'),
(5191, 455, '_wp_attached_file', '2026/07/Genetic-Testing-a.jpg'),
(5192, 455, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:29:\"2026/07/Genetic-Testing-a.jpg\";s:8:\"filesize\";i:71760;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Genetic-Testing-a-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15936;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Genetic-Testing-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7114;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Genetic-Testing-a-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68576;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(5203, 456, '_elementor_page_settings', 'a:0:{}'),
(5206, 457, '_wp_page_template', 'default'),
(5208, 457, '_elementor_global_class_usage_indexed', '1'),
(5209, 457, '_elementor_edit_mode', 'builder'),
(5210, 457, '_elementor_template_type', 'wp-page'),
(5211, 457, '_elementor_version', '4.1.4'),
(5212, 457, '_elementor_pro_version', '4.1.2'),
(5213, 457, '_elementor_global_class_usage_indexed_preview', '1'),
(5214, 457, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5215, 457, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5216, 457, '_elementor_page_settings', 'a:0:{}'),
(5221, 458, '_elementor_global_class_usage_indexed', '1'),
(5222, 458, '_elementor_edit_mode', 'builder'),
(5223, 458, '_elementor_template_type', 'wp-page'),
(5224, 458, '_elementor_version', '4.1.4'),
(5225, 458, '_elementor_pro_version', '4.1.2'),
(5226, 458, '_elementor_global_class_usage_indexed_preview', '1'),
(5227, 458, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5228, 458, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7036, 604, '_wp_page_template', 'default'),
(7000, 601, '_wp_page_template', 'default'),
(6974, 599, '_wp_page_template', 'default'),
(6976, 599, '_elementor_global_class_usage_indexed', '1'),
(6977, 599, '_elementor_edit_mode', 'builder'),
(6978, 599, '_elementor_template_type', 'wp-page'),
(6979, 599, '_elementor_version', '4.1.4'),
(6980, 599, '_elementor_pro_version', '4.1.2'),
(6981, 599, '_elementor_global_class_usage_indexed_preview', '1'),
(6982, 599, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6983, 599, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5235, 36, '_elementor_edit_mode', 'builder'),
(5236, 36, '_astra_content_layout_flag', 'disabled'),
(5238, 36, 'ast-title-bar-display', 'disabled'),
(5239, 36, 'ast-featured-img', 'disabled'),
(5240, 36, '_elementor_template_type', 'wp-page'),
(5241, 36, '_elementor_version', '4.1.4'),
(5242, 36, '_elementor_pro_version', '4.1.2'),
(5412, 36, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5244, 36, '_elementor_global_class_usage_indexed_preview', '1'),
(5245, 36, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5252, 459, '_elementor_template_type', 'container'),
(5253, 459, '_elementor_version', '4.1.4'),
(5254, 459, '_elementor_pro_version', '4.1.2'),
(5255, 459, '_elementor_page_settings', 'a:0:{}'),
(5256, 459, '_elementor_global_class_usage_indexed', '1'),
(5257, 459, '_elementor_global_class_usage_indexed_preview', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5258, 459, '_elementor_data', '[{\"id\":\"53ecf513\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"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\":\"3bff2e54\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48ca9151\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ae7e48d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19354d73\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c09d319\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"119ed88d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"408ad107\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5aa3e7b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b76924c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-07-02 to 2026-07-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_device_type_value\":\"mobile\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5251, 459, '_elementor_edit_mode', 'builder'),
(5291, 462, '_elementor_page_settings', 'a:0:{}'),
(5294, 463, '_wp_page_template', 'elementor_header_footer'),
(5295, 463, '_elementor_edit_mode', 'builder'),
(5296, 463, '_elementor_template_type', 'wp-page'),
(5297, 463, '_elementor_version', '4.1.4'),
(5298, 463, '_elementor_pro_version', '4.1.2'),
(5299, 463, '_elementor_global_class_usage_indexed', '1'),
(5300, 463, '_elementor_global_class_usage_indexed_preview', '1'),
(5301, 463, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5302, 463, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5304, 463, '_elementor_page_settings', 'a:0:{}'),
(5308, 464, '_elementor_edit_mode', 'builder'),
(5309, 464, '_elementor_template_type', 'wp-page'),
(5310, 464, '_elementor_version', '4.1.4'),
(5311, 464, '_elementor_pro_version', '4.1.2'),
(5312, 464, '_elementor_global_class_usage_indexed', '1'),
(5313, 464, '_elementor_global_class_usage_indexed_preview', '1'),
(5314, 464, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5315, 464, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5332, 465, '_elementor_page_settings', 'a:0:{}'),
(5333, 466, '_wp_page_template', 'elementor_header_footer'),
(5334, 466, '_elementor_edit_mode', 'builder'),
(5335, 466, '_elementor_template_type', 'wp-page'),
(5336, 466, '_elementor_version', '4.1.4'),
(5337, 466, '_elementor_pro_version', '4.1.2'),
(5338, 466, '_elementor_global_class_usage_indexed', '1'),
(5339, 466, '_elementor_global_class_usage_indexed_preview', '1'),
(5340, 466, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5341, 466, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5343, 466, '_elementor_page_settings', 'a:0:{}'),
(5344, 467, '_wp_page_template', 'elementor_header_footer'),
(5345, 467, '_elementor_edit_mode', 'builder'),
(5346, 467, '_elementor_template_type', 'wp-page'),
(5347, 467, '_elementor_version', '4.1.4'),
(5348, 467, '_elementor_pro_version', '4.1.2'),
(5349, 467, '_elementor_global_class_usage_indexed', '1'),
(5350, 467, '_elementor_global_class_usage_indexed_preview', '1'),
(5351, 467, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5352, 467, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5378, 470, '_wp_page_template', 'elementor_header_footer'),
(5356, 468, '_wp_page_template', 'elementor_header_footer'),
(5357, 468, '_elementor_edit_mode', 'builder'),
(5358, 468, '_elementor_template_type', 'wp-page'),
(5359, 468, '_elementor_version', '4.1.4'),
(5360, 468, '_elementor_pro_version', '4.1.2'),
(5361, 468, '_elementor_global_class_usage_indexed', '1'),
(5362, 468, '_elementor_global_class_usage_indexed_preview', '1'),
(5363, 468, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5364, 468, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5366, 468, '_elementor_page_settings', 'a:0:{}'),
(5367, 469, '_wp_page_template', 'elementor_header_footer'),
(5368, 469, '_elementor_edit_mode', 'builder'),
(5369, 469, '_elementor_template_type', 'wp-page'),
(5370, 469, '_elementor_version', '4.1.4'),
(5371, 469, '_elementor_pro_version', '4.1.2'),
(5372, 469, '_elementor_global_class_usage_indexed', '1'),
(5373, 469, '_elementor_global_class_usage_indexed_preview', '1'),
(5374, 469, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5375, 469, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5377, 469, '_elementor_page_settings', 'a:0:{}'),
(5379, 470, '_elementor_edit_mode', 'builder'),
(5380, 470, '_elementor_template_type', 'wp-page'),
(5381, 470, '_elementor_version', '4.1.4'),
(5382, 470, '_elementor_pro_version', '4.1.2'),
(5383, 470, '_elementor_global_class_usage_indexed', '1'),
(5384, 470, '_elementor_global_class_usage_indexed_preview', '1'),
(5385, 470, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5386, 470, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5480, 479, '_wp_page_template', 'elementor_header_footer'),
(5481, 479, '_elementor_edit_mode', 'builder'),
(5482, 479, '_elementor_template_type', 'wp-page'),
(5483, 479, '_elementor_version', '4.1.4'),
(5484, 479, '_elementor_pro_version', '4.1.2'),
(5485, 479, '_elementor_global_class_usage_indexed', '1'),
(5486, 479, '_elementor_global_class_usage_indexed_preview', '1'),
(5487, 479, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5488, 479, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5390, 471, '_wp_page_template', 'elementor_header_footer'),
(5392, 471, '_elementor_global_class_usage_indexed', '1'),
(5393, 471, '_elementor_edit_mode', 'builder'),
(5394, 471, '_elementor_template_type', 'wp-page'),
(5395, 471, '_elementor_version', '4.1.4'),
(5396, 471, '_elementor_pro_version', '4.1.2'),
(5397, 471, '_elementor_page_settings', 'a:0:{}'),
(5398, 471, '_elementor_global_class_usage_indexed_preview', '1'),
(5399, 471, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5401, 472, '_wp_page_template', 'elementor_header_footer'),
(5403, 472, '_elementor_global_class_usage_indexed', '1'),
(5404, 472, '_elementor_edit_mode', 'builder'),
(5405, 472, '_elementor_template_type', 'wp-page'),
(5406, 472, '_elementor_version', '4.1.4'),
(5407, 472, '_elementor_pro_version', '4.1.2'),
(5408, 472, '_elementor_page_settings', 'a:0:{}'),
(5409, 472, '_elementor_global_class_usage_indexed_preview', '1'),
(5410, 472, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5426, 474, '_wp_page_template', 'elementor_header_footer'),
(5428, 474, '_elementor_global_class_usage_indexed', '1'),
(5429, 474, '_elementor_edit_mode', 'builder'),
(5430, 474, '_elementor_template_type', 'wp-page'),
(5431, 474, '_elementor_version', '4.1.4'),
(5432, 474, '_elementor_pro_version', '4.1.2'),
(5433, 474, '_elementor_global_class_usage_indexed_preview', '1'),
(5434, 474, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5435, 474, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}]},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c7da09\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5436, 474, '_elementor_page_settings', 'a:0:{}'),
(5437, 475, '_wp_page_template', 'elementor_header_footer'),
(5439, 475, '_elementor_global_class_usage_indexed', '1'),
(5440, 475, '_elementor_edit_mode', 'builder'),
(5441, 475, '_elementor_template_type', 'wp-page'),
(5442, 475, '_elementor_version', '4.1.4'),
(5443, 475, '_elementor_pro_version', '4.1.2'),
(5444, 475, '_elementor_global_class_usage_indexed_preview', '1'),
(5445, 475, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5446, 475, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}]},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c7da09\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5447, 475, '_elementor_page_settings', 'a:0:{}'),
(5448, 476, '_wp_page_template', 'elementor_header_footer'),
(5450, 476, '_elementor_global_class_usage_indexed', '1'),
(5451, 476, '_elementor_edit_mode', 'builder'),
(5452, 476, '_elementor_template_type', 'wp-page'),
(5453, 476, '_elementor_version', '4.1.4'),
(5454, 476, '_elementor_pro_version', '4.1.2'),
(5455, 476, '_elementor_global_class_usage_indexed_preview', '1'),
(5456, 476, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5457, 476, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c7da09\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8005, 682, '_wp_page_template', 'elementor_header_footer'),
(8007, 682, '_elementor_global_class_usage_indexed', '1'),
(8008, 682, '_elementor_edit_mode', 'builder'),
(8009, 682, '_elementor_template_type', 'wp-page'),
(8010, 682, '_elementor_version', '4.1.4'),
(8011, 682, '_elementor_pro_version', '4.1.2'),
(8012, 682, '_elementor_global_class_usage_indexed_preview', '1'),
(8013, 682, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8014, 682, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c7da09\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10749, 905, '_wp_page_template', 'elementor_header_footer'),
(8068, 686, '_wp_page_template', 'elementor_header_footer'),
(8070, 686, '_elementor_global_class_usage_indexed', '1'),
(8071, 686, '_elementor_edit_mode', 'builder'),
(8072, 686, '_elementor_template_type', 'wp-page'),
(8073, 686, '_elementor_version', '4.1.4'),
(8074, 686, '_elementor_pro_version', '4.1.2'),
(8075, 686, '_elementor_global_class_usage_indexed_preview', '1'),
(8076, 686, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8077, 686, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5539, 484, '_wp_page_template', 'elementor_header_footer'),
(5517, 482, '_wp_page_template', 'elementor_header_footer'),
(5518, 482, '_elementor_edit_mode', 'builder'),
(5519, 482, '_elementor_template_type', 'wp-page'),
(5520, 482, '_elementor_version', '4.1.4'),
(5521, 482, '_elementor_pro_version', '4.1.2'),
(5522, 482, '_elementor_global_class_usage_indexed', '1'),
(5523, 482, '_elementor_global_class_usage_indexed_preview', '1'),
(5524, 482, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5525, 482, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5464, 477, '_wp_attached_file', '2026/07/Vector-BG-4.png'),
(5465, 477, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:23:\"2026/07/Vector-BG-4.png\";s:8:\"filesize\";i:152571;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Vector-BG-4-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16013;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Vector-BG-4-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79526;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Vector-BG-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7558;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Vector-BG-4-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54587;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:25:\"Vector-BG-4-1536x1024.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157877;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(5573, 487, '_wp_page_template', 'elementor_header_footer'),
(5504, 481, '_wp_page_template', 'elementor_header_footer'),
(5505, 481, '_elementor_edit_mode', 'builder'),
(5506, 481, '_elementor_template_type', 'wp-page'),
(5507, 481, '_elementor_version', '4.1.4'),
(5508, 481, '_elementor_pro_version', '4.1.2'),
(5509, 481, '_elementor_global_class_usage_indexed', '1'),
(5510, 481, '_elementor_global_class_usage_indexed_preview', '1'),
(5511, 481, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5512, 481, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5490, 479, '_elementor_page_settings', 'a:0:{}'),
(5492, 480, '_wp_page_template', 'elementor_header_footer'),
(5493, 480, '_elementor_edit_mode', 'builder'),
(5494, 480, '_elementor_template_type', 'wp-page'),
(5495, 480, '_elementor_version', '4.1.4'),
(5496, 480, '_elementor_pro_version', '4.1.2'),
(5497, 480, '_elementor_global_class_usage_indexed', '1'),
(5498, 480, '_elementor_global_class_usage_indexed_preview', '1'),
(5499, 480, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5500, 480, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5502, 480, '_elementor_page_settings', 'a:0:{}'),
(5527, 482, '_elementor_page_settings', 'a:0:{}'),
(5528, 483, '_wp_page_template', 'elementor_header_footer'),
(5529, 483, '_elementor_edit_mode', 'builder'),
(5530, 483, '_elementor_template_type', 'wp-page'),
(5531, 483, '_elementor_version', '4.1.4'),
(5532, 483, '_elementor_pro_version', '4.1.2'),
(5533, 483, '_elementor_global_class_usage_indexed', '1'),
(5534, 483, '_elementor_global_class_usage_indexed_preview', '1'),
(5535, 483, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5536, 483, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5538, 483, '_elementor_page_settings', 'a:0:{}'),
(5540, 484, '_elementor_edit_mode', 'builder'),
(5541, 484, '_elementor_template_type', 'wp-page'),
(5542, 484, '_elementor_version', '4.1.4'),
(5543, 484, '_elementor_pro_version', '4.1.2'),
(5544, 484, '_elementor_global_class_usage_indexed', '1'),
(5545, 484, '_elementor_global_class_usage_indexed_preview', '1'),
(5546, 484, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5547, 484, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5551, 485, '_wp_page_template', 'elementor_header_footer'),
(5552, 485, '_elementor_edit_mode', 'builder'),
(5553, 485, '_elementor_template_type', 'wp-page'),
(5554, 485, '_elementor_version', '4.1.4'),
(5555, 485, '_elementor_pro_version', '4.1.2'),
(5556, 485, '_elementor_global_class_usage_indexed', '1'),
(5557, 485, '_elementor_global_class_usage_indexed_preview', '1'),
(5558, 485, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5559, 485, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5561, 485, '_elementor_page_settings', 'a:0:{}'),
(5562, 486, '_wp_page_template', 'elementor_header_footer'),
(5563, 486, '_elementor_edit_mode', 'builder'),
(5564, 486, '_elementor_template_type', 'wp-page'),
(5565, 486, '_elementor_version', '4.1.4'),
(5566, 486, '_elementor_pro_version', '4.1.2'),
(5567, 486, '_elementor_global_class_usage_indexed', '1'),
(5568, 486, '_elementor_global_class_usage_indexed_preview', '1'),
(5569, 486, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5570, 486, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5572, 486, '_elementor_page_settings', 'a:0:{}'),
(5574, 487, '_elementor_edit_mode', 'builder'),
(5575, 487, '_elementor_template_type', 'wp-page'),
(5576, 487, '_elementor_version', '4.1.4'),
(5577, 487, '_elementor_pro_version', '4.1.2'),
(5578, 487, '_elementor_global_class_usage_indexed', '1'),
(5579, 487, '_elementor_global_class_usage_indexed_preview', '1'),
(5580, 487, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5581, 487, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5609, 491, '_wp_page_template', 'elementor_header_footer'),
(5587, 489, '_wp_page_template', 'elementor_header_footer'),
(5588, 489, '_elementor_edit_mode', 'builder'),
(5589, 489, '_elementor_template_type', 'wp-page'),
(5590, 489, '_elementor_version', '4.1.4'),
(5591, 489, '_elementor_pro_version', '4.1.2'),
(5592, 489, '_elementor_global_class_usage_indexed', '1'),
(5593, 489, '_elementor_global_class_usage_indexed_preview', '1'),
(5594, 489, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5595, 489, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9514, 811, '_wp_attached_file', '2026/07/Live-Well.-Age-Well-left.webp'),
(9515, 811, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1165;s:6:\"height\";i:1300;s:4:\"file\";s:37:\"2026/07/Live-Well.-Age-Well-left.webp\";s:8:\"filesize\";i:134808;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Live-Well.-Age-Well-left-269x300.webp\";s:5:\"width\";i:269;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12964;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Live-Well.-Age-Well-left-918x1024.webp\";s:5:\"width\";i:918;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:119186;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Live-Well.-Age-Well-left-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4934;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Live-Well.-Age-Well-left-768x857.webp\";s:5:\"width\";i:768;s:6:\"height\";i:857;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:87436;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(5597, 489, '_elementor_page_settings', 'a:0:{}'),
(5598, 490, '_wp_page_template', 'elementor_header_footer'),
(5599, 490, '_elementor_edit_mode', 'builder'),
(5600, 490, '_elementor_template_type', 'wp-page'),
(5601, 490, '_elementor_version', '4.1.4'),
(5602, 490, '_elementor_pro_version', '4.1.2'),
(5603, 490, '_elementor_global_class_usage_indexed', '1'),
(5604, 490, '_elementor_global_class_usage_indexed_preview', '1'),
(5605, 490, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5606, 490, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/banner-wellness-a.jpg\",\"id\":56,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5608, 490, '_elementor_page_settings', 'a:0:{}'),
(5610, 491, '_elementor_edit_mode', 'builder'),
(5611, 491, '_elementor_template_type', 'wp-page'),
(5612, 491, '_elementor_version', '4.1.4'),
(5613, 491, '_elementor_pro_version', '4.1.2'),
(5614, 491, '_elementor_global_class_usage_indexed', '1'),
(5615, 491, '_elementor_global_class_usage_indexed_preview', '1'),
(5616, 491, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5617, 491, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5625, 493, '_wp_page_template', 'elementor_header_footer'),
(5626, 493, '_elementor_edit_mode', 'builder'),
(5627, 493, '_elementor_template_type', 'wp-page'),
(5628, 493, '_elementor_version', '4.1.4'),
(5629, 493, '_elementor_pro_version', '4.1.2'),
(5630, 493, '_elementor_global_class_usage_indexed', '1'),
(5631, 493, '_elementor_global_class_usage_indexed_preview', '1'),
(5632, 493, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5633, 493, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5811, 507, '_wp_page_template', 'elementor_header_footer'),
(5812, 507, '_elementor_edit_mode', 'builder'),
(5683, 498, '_wp_page_template', 'elementor_header_footer'),
(5684, 498, '_elementor_edit_mode', 'builder'),
(5685, 498, '_elementor_template_type', 'wp-page'),
(5686, 498, '_elementor_version', '4.1.4'),
(5687, 498, '_elementor_pro_version', '4.1.2'),
(5688, 498, '_elementor_global_class_usage_indexed', '1'),
(5689, 498, '_elementor_global_class_usage_indexed_preview', '1'),
(5690, 498, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5691, 498, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5623, 492, '_wp_attached_file', '2026/07/img1.jpg'),
(5624, 492, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:676;s:4:\"file\";s:16:\"2026/07/img1.jpg\";s:8:\"filesize\";i:90113;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"img1-300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2348;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"img1-1024x361.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21916;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"img1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:557;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"img1-768x270.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13152;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"img1-1536x541.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43044;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(5635, 493, '_elementor_page_settings', 'a:0:{}'),
(5638, 494, '_wp_page_template', 'elementor_header_footer'),
(5639, 494, '_elementor_edit_mode', 'builder'),
(5640, 494, '_elementor_template_type', 'wp-page'),
(5641, 494, '_elementor_version', '4.1.4'),
(5642, 494, '_elementor_pro_version', '4.1.2'),
(5643, 494, '_elementor_global_class_usage_indexed', '1'),
(5644, 494, '_elementor_global_class_usage_indexed_preview', '1'),
(5645, 494, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5646, 494, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5648, 494, '_elementor_page_settings', 'a:0:{}'),
(5651, 495, '_wp_page_template', 'elementor_header_footer'),
(5652, 495, '_elementor_edit_mode', 'builder'),
(5653, 495, '_elementor_template_type', 'wp-page'),
(5654, 495, '_elementor_version', '4.1.4'),
(5655, 495, '_elementor_pro_version', '4.1.2'),
(5656, 495, '_elementor_global_class_usage_indexed', '1'),
(5657, 495, '_elementor_global_class_usage_indexed_preview', '1'),
(5658, 495, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5659, 495, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5749, 503, '_elementor_edit_mode', 'builder'),
(5722, 501, '_wp_page_template', 'elementor_header_footer'),
(5723, 501, '_elementor_edit_mode', 'builder'),
(5724, 501, '_elementor_template_type', 'wp-page'),
(5725, 501, '_elementor_version', '4.1.4'),
(5726, 501, '_elementor_pro_version', '4.1.2'),
(5727, 501, '_elementor_global_class_usage_indexed', '1'),
(5728, 501, '_elementor_global_class_usage_indexed_preview', '1'),
(5729, 501, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5730, 501, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/slider2-shape.webp\",\"id\":496,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5667, 496, '_wp_attached_file', '2026/07/slider2-shape.webp'),
(5668, 496, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1169;s:6:\"height\";i:794;s:4:\"file\";s:26:\"2026/07/slider2-shape.webp\";s:8:\"filesize\";i:114978;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"slider2-shape-300x204.webp\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15884;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"slider2-shape-1024x696.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:120372;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"slider2-shape-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6426;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"slider2-shape-768x522.webp\";s:5:\"width\";i:768;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:76100;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(5748, 503, '_wp_page_template', 'elementor_header_footer'),
(5707, 500, '_wp_page_template', 'elementor_header_footer'),
(5708, 500, '_elementor_edit_mode', 'builder'),
(5709, 500, '_elementor_template_type', 'wp-page'),
(5710, 500, '_elementor_version', '4.1.4'),
(5711, 500, '_elementor_pro_version', '4.1.2'),
(5712, 500, '_elementor_global_class_usage_indexed', '1'),
(5713, 500, '_elementor_global_class_usage_indexed_preview', '1'),
(5714, 500, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5715, 500, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/slider2-shape.webp\",\"id\":496,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5693, 498, '_elementor_page_settings', 'a:0:{}'),
(5695, 499, '_wp_page_template', 'elementor_header_footer'),
(5696, 499, '_elementor_edit_mode', 'builder'),
(5697, 499, '_elementor_template_type', 'wp-page'),
(5698, 499, '_elementor_version', '4.1.4'),
(5699, 499, '_elementor_pro_version', '4.1.2'),
(5700, 499, '_elementor_global_class_usage_indexed', '1'),
(5701, 499, '_elementor_global_class_usage_indexed_preview', '1'),
(5702, 499, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5703, 499, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5705, 499, '_elementor_page_settings', 'a:0:{}'),
(5764, 504, '_wp_page_template', 'elementor_header_footer'),
(5765, 504, '_elementor_edit_mode', 'builder'),
(5766, 504, '_elementor_template_type', 'wp-page'),
(5767, 504, '_elementor_version', '4.1.4'),
(5768, 504, '_elementor_pro_version', '4.1.2'),
(5769, 504, '_elementor_global_class_usage_indexed', '1'),
(5770, 504, '_elementor_global_class_usage_indexed_preview', '1'),
(5771, 504, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5772, 504, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5732, 501, '_elementor_page_settings', 'a:0:{}'),
(5735, 502, '_wp_page_template', 'elementor_header_footer'),
(5736, 502, '_elementor_edit_mode', 'builder'),
(5737, 502, '_elementor_template_type', 'wp-page'),
(5738, 502, '_elementor_version', '4.1.4'),
(5739, 502, '_elementor_pro_version', '4.1.2'),
(5740, 502, '_elementor_global_class_usage_indexed', '1'),
(5741, 502, '_elementor_global_class_usage_indexed_preview', '1'),
(5742, 502, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5743, 502, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/slider2-shape.webp\",\"id\":496,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5745, 502, '_elementor_page_settings', 'a:0:{}'),
(5750, 503, '_elementor_template_type', 'wp-page'),
(5751, 503, '_elementor_version', '4.1.4'),
(5752, 503, '_elementor_pro_version', '4.1.2'),
(5753, 503, '_elementor_global_class_usage_indexed', '1'),
(5754, 503, '_elementor_global_class_usage_indexed_preview', '1'),
(5755, 503, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5756, 503, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5813, 507, '_elementor_template_type', 'wp-page'),
(5814, 507, '_elementor_version', '4.1.4'),
(5815, 507, '_elementor_pro_version', '4.1.2'),
(5816, 507, '_elementor_global_class_usage_indexed', '1'),
(5817, 507, '_elementor_global_class_usage_indexed_preview', '1'),
(5818, 507, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5819, 507, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5774, 504, '_elementor_page_settings', 'a:0:{}'),
(5777, 505, '_wp_page_template', 'elementor_header_footer'),
(5778, 505, '_elementor_edit_mode', 'builder'),
(5779, 505, '_elementor_template_type', 'wp-page'),
(5780, 505, '_elementor_version', '4.1.4'),
(5781, 505, '_elementor_pro_version', '4.1.2'),
(5782, 505, '_elementor_global_class_usage_indexed', '1'),
(5783, 505, '_elementor_global_class_usage_indexed_preview', '1'),
(5784, 505, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5785, 505, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5787, 505, '_elementor_page_settings', 'a:0:{}'),
(5790, 506, '_wp_page_template', 'elementor_header_footer'),
(5791, 506, '_elementor_edit_mode', 'builder'),
(5792, 506, '_elementor_template_type', 'wp-page'),
(5793, 506, '_elementor_version', '4.1.4'),
(5794, 506, '_elementor_pro_version', '4.1.2'),
(5795, 506, '_elementor_global_class_usage_indexed', '1'),
(5796, 506, '_elementor_global_class_usage_indexed_preview', '1'),
(5797, 506, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5798, 506, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5873, 512, '_wp_page_template', 'elementor_header_footer'),
(5851, 510, '_wp_page_template', 'elementor_header_footer'),
(5852, 510, '_elementor_edit_mode', 'builder'),
(5853, 510, '_elementor_template_type', 'wp-page'),
(5854, 510, '_elementor_version', '4.1.4'),
(5855, 510, '_elementor_pro_version', '4.1.2'),
(5856, 510, '_elementor_global_class_usage_indexed', '1'),
(5857, 510, '_elementor_global_class_usage_indexed_preview', '1'),
(5858, 510, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5859, 510, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7842, 669, '_wp_page_template', 'default'),
(7816, 667, '_wp_page_template', 'default'),
(7818, 667, '_elementor_global_class_usage_indexed', '1'),
(7819, 667, '_elementor_edit_mode', 'builder'),
(7820, 667, '_elementor_template_type', 'wp-page'),
(7821, 667, '_elementor_version', '4.1.4'),
(7822, 667, '_elementor_pro_version', '4.1.2'),
(7823, 667, '_elementor_global_class_usage_indexed_preview', '1'),
(7824, 667, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7825, 667, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9204, 786, '_wp_page_template', 'elementor_header_footer'),
(9178, 784, '_wp_page_template', 'elementor_header_footer'),
(9180, 784, '_elementor_global_class_usage_indexed', '1'),
(9181, 784, '_elementor_edit_mode', 'builder'),
(9182, 784, '_elementor_template_type', 'wp-page'),
(9183, 784, '_elementor_version', '4.1.4'),
(9184, 784, '_elementor_pro_version', '4.1.2'),
(9185, 784, '_elementor_global_class_usage_indexed_preview', '1'),
(9186, 784, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9187, 784, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(5810, 36, '__elementor_forms_snapshot', '[{\"id\":\"89c2527\",\"name\":\"Contact Us\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"First Name\"},{\"id\":\"field_b94c01e\",\"type\":\"text\",\"label\":\"Last Name\"},{\"id\":\"email\",\"type\":\"tel\",\"label\":\"Phone Number \"},{\"id\":\"field_cc1facf\",\"type\":\"email\",\"label\":\"Email\"},{\"id\":\"message\",\"type\":\"textarea\",\"label\":\"Message\"}]}]'),
(5821, 507, '_elementor_page_settings', 'a:0:{}'),
(5824, 508, '_wp_page_template', 'elementor_header_footer'),
(5825, 508, '_elementor_edit_mode', 'builder'),
(5826, 508, '_elementor_template_type', 'wp-page'),
(5827, 508, '_elementor_version', '4.1.4'),
(5828, 508, '_elementor_pro_version', '4.1.2'),
(5829, 508, '_elementor_global_class_usage_indexed', '1'),
(5830, 508, '_elementor_global_class_usage_indexed_preview', '1'),
(5831, 508, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5832, 508, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]}},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5834, 508, '_elementor_page_settings', 'a:0:{}'),
(5837, 509, '_wp_page_template', 'elementor_header_footer'),
(5838, 509, '_elementor_edit_mode', 'builder'),
(5839, 509, '_elementor_template_type', 'wp-page'),
(5840, 509, '_elementor_version', '4.1.4'),
(5841, 509, '_elementor_pro_version', '4.1.2'),
(5842, 509, '_elementor_global_class_usage_indexed', '1'),
(5843, 509, '_elementor_global_class_usage_indexed_preview', '1'),
(5844, 509, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5845, 509, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5861, 510, '_elementor_page_settings', 'a:0:{}'),
(5862, 511, '_wp_page_template', 'elementor_header_footer'),
(5863, 511, '_elementor_edit_mode', 'builder'),
(5864, 511, '_elementor_template_type', 'wp-page'),
(5865, 511, '_elementor_version', '4.1.4'),
(5866, 511, '_elementor_pro_version', '4.1.2'),
(5867, 511, '_elementor_global_class_usage_indexed', '1'),
(5868, 511, '_elementor_global_class_usage_indexed_preview', '1'),
(5869, 511, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5870, 511, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5872, 511, '_elementor_page_settings', 'a:0:{}'),
(5874, 512, '_elementor_edit_mode', 'builder'),
(5875, 512, '_elementor_template_type', 'wp-page'),
(5876, 512, '_elementor_version', '4.1.4'),
(5877, 512, '_elementor_pro_version', '4.1.2'),
(5878, 512, '_elementor_global_class_usage_indexed', '1'),
(5879, 512, '_elementor_global_class_usage_indexed_preview', '1'),
(5880, 512, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5881, 512, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5887, 513, '_wp_page_template', 'elementor_header_footer'),
(5888, 513, '_elementor_edit_mode', 'builder'),
(5889, 513, '_elementor_template_type', 'wp-page'),
(5890, 513, '_elementor_version', '4.1.4'),
(5891, 513, '_elementor_pro_version', '4.1.2'),
(5892, 513, '_elementor_global_class_usage_indexed', '1'),
(5893, 513, '_elementor_global_class_usage_indexed_preview', '1'),
(5894, 513, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5895, 513, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6013, 522, '_wp_page_template', 'elementor_header_footer'),
(6014, 522, '_elementor_edit_mode', 'builder'),
(6015, 522, '_elementor_template_type', 'wp-page'),
(6016, 522, '_elementor_version', '4.1.4'),
(6017, 522, '_elementor_pro_version', '4.1.2'),
(6018, 522, '_elementor_global_class_usage_indexed', '1'),
(6019, 522, '_elementor_global_class_usage_indexed_preview', '1'),
(6020, 522, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6021, 522, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5897, 513, '_elementor_page_settings', 'a:0:{}'),
(5900, 514, '_wp_page_template', 'elementor_header_footer'),
(5901, 514, '_elementor_edit_mode', 'builder'),
(5902, 514, '_elementor_template_type', 'wp-page'),
(5903, 514, '_elementor_version', '4.1.4'),
(5904, 514, '_elementor_pro_version', '4.1.2'),
(5905, 514, '_elementor_global_class_usage_indexed', '1'),
(5906, 514, '_elementor_global_class_usage_indexed_preview', '1'),
(5907, 514, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5908, 514, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5910, 514, '_elementor_page_settings', 'a:0:{}'),
(5913, 515, '_wp_page_template', 'elementor_header_footer'),
(5914, 515, '_elementor_edit_mode', 'builder'),
(5915, 515, '_elementor_template_type', 'wp-page'),
(5916, 515, '_elementor_version', '4.1.4'),
(5917, 515, '_elementor_pro_version', '4.1.2'),
(5918, 515, '_elementor_global_class_usage_indexed', '1'),
(5919, 515, '_elementor_global_class_usage_indexed_preview', '1'),
(5920, 515, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5921, 515, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6053, 525, '_wp_page_template', 'elementor_header_footer'),
(6054, 525, '_elementor_edit_mode', 'builder'),
(6055, 525, '_elementor_template_type', 'wp-page'),
(6056, 525, '_elementor_version', '4.1.4'),
(6057, 525, '_elementor_pro_version', '4.1.2'),
(6058, 525, '_elementor_global_class_usage_indexed', '1'),
(6059, 525, '_elementor_global_class_usage_indexed_preview', '1'),
(6060, 525, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6061, 525, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5939, 516, '_elementor_page_settings', 'a:0:{}'),
(5942, 517, '_wp_page_template', 'default'),
(5944, 517, '_elementor_global_class_usage_indexed', '1'),
(5945, 517, '_elementor_edit_mode', 'builder'),
(5946, 517, '_elementor_template_type', 'wp-page'),
(5947, 517, '_elementor_version', '4.1.4'),
(5948, 517, '_elementor_pro_version', '4.1.2'),
(5949, 517, '_elementor_global_class_usage_indexed_preview', '1'),
(5950, 517, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5951, 517, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"1ac594b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}]},\"elements\":[{\"id\":\"182257a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5952, 517, '_elementor_page_settings', 'a:0:{}'),
(5997, 521, '_wp_page_template', 'default'),
(5955, 518, '_wp_page_template', 'default'),
(5957, 518, '_elementor_global_class_usage_indexed', '1'),
(5958, 518, '_elementor_edit_mode', 'builder'),
(5959, 518, '_elementor_template_type', 'wp-page'),
(5960, 518, '_elementor_version', '4.1.4'),
(5961, 518, '_elementor_pro_version', '4.1.2'),
(5962, 518, '_elementor_global_class_usage_indexed_preview', '1'),
(5963, 518, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5964, 518, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"1ac594b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}]},\"elements\":[{\"id\":\"182257a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6444, 558, '_wp_page_template', 'default'),
(6446, 558, '_elementor_global_class_usage_indexed', '1'),
(6447, 558, '_elementor_edit_mode', 'builder'),
(6448, 558, '_elementor_template_type', 'wp-page'),
(6449, 558, '_elementor_version', '4.1.4'),
(6450, 558, '_elementor_pro_version', '4.1.2'),
(6451, 558, '_elementor_global_class_usage_indexed_preview', '1'),
(6452, 558, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6453, 558, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5981, 519, '_elementor_page_settings', 'a:0:{}'),
(5984, 520, '_wp_page_template', 'default'),
(5986, 520, '_elementor_global_class_usage_indexed', '1'),
(5987, 520, '_elementor_edit_mode', 'builder'),
(5988, 520, '_elementor_template_type', 'wp-page'),
(5989, 520, '_elementor_version', '4.1.4'),
(5990, 520, '_elementor_pro_version', '4.1.2'),
(5991, 520, '_elementor_global_class_usage_indexed_preview', '1'),
(5992, 520, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(5993, 520, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"1ac594b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}]},\"elements\":[{\"id\":\"182257a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5994, 520, '_elementor_page_settings', 'a:0:{}'),
(6004, 521, '_elementor_global_class_usage_indexed_preview', '1'),
(6005, 521, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6006, 521, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8492, 726, '_wp_page_template', 'default'),
(6514, 564, '_wp_page_template', 'default'),
(6492, 562, '_elementor_template_type', 'wp-page'),
(6493, 562, '_elementor_version', '4.1.4'),
(6494, 562, '_elementor_pro_version', '4.1.2'),
(6495, 562, '_elementor_global_class_usage_indexed_preview', '1'),
(6496, 562, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6497, 562, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6023, 522, '_elementor_page_settings', 'a:0:{}'),
(6026, 523, '_wp_page_template', 'elementor_header_footer'),
(6027, 523, '_elementor_edit_mode', 'builder'),
(6028, 523, '_elementor_template_type', 'wp-page'),
(6029, 523, '_elementor_version', '4.1.4'),
(6030, 523, '_elementor_pro_version', '4.1.2'),
(6031, 523, '_elementor_global_class_usage_indexed', '1'),
(6032, 523, '_elementor_global_class_usage_indexed_preview', '1'),
(6033, 523, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6034, 523, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6036, 523, '_elementor_page_settings', 'a:0:{}'),
(6039, 524, '_wp_page_template', 'elementor_header_footer'),
(6040, 524, '_elementor_edit_mode', 'builder'),
(6041, 524, '_elementor_template_type', 'wp-page'),
(6042, 524, '_elementor_version', '4.1.4'),
(6043, 524, '_elementor_pro_version', '4.1.2'),
(6044, 524, '_elementor_global_class_usage_indexed', '1'),
(6045, 524, '_elementor_global_class_usage_indexed_preview', '1'),
(6046, 524, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6047, 524, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6063, 525, '_elementor_page_settings', 'a:0:{}'),
(6064, 526, '_wp_page_template', 'elementor_header_footer'),
(6065, 526, '_elementor_edit_mode', 'builder'),
(6066, 526, '_elementor_template_type', 'wp-page'),
(6067, 526, '_elementor_version', '4.1.4'),
(6068, 526, '_elementor_pro_version', '4.1.2'),
(6069, 526, '_elementor_global_class_usage_indexed', '1'),
(6070, 526, '_elementor_global_class_usage_indexed_preview', '1'),
(6071, 526, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6072, 526, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6074, 526, '_elementor_page_settings', 'a:0:{}'),
(6075, 527, '_wp_page_template', 'elementor_header_footer'),
(6076, 527, '_elementor_edit_mode', 'builder'),
(6077, 527, '_elementor_template_type', 'wp-page'),
(6078, 527, '_elementor_version', '4.1.4'),
(6079, 527, '_elementor_pro_version', '4.1.2'),
(6080, 527, '_elementor_global_class_usage_indexed', '1'),
(6081, 527, '_elementor_global_class_usage_indexed_preview', '1'),
(6082, 527, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6083, 527, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6129, 532, '_wp_page_template', 'elementor_header_footer'),
(6105, 530, '_wp_page_template', 'elementor_header_footer'),
(6106, 530, '_elementor_edit_mode', 'builder'),
(6107, 530, '_elementor_template_type', 'wp-page'),
(6108, 530, '_elementor_version', '4.1.4'),
(6109, 530, '_elementor_pro_version', '4.1.2'),
(6110, 530, '_elementor_global_class_usage_indexed', '1'),
(6111, 530, '_elementor_global_class_usage_indexed_preview', '1'),
(6112, 530, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6113, 530, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6169, 536, '_wp_page_template', 'elementor_header_footer'),
(6170, 536, '_elementor_edit_mode', 'builder'),
(6171, 536, '_elementor_template_type', 'wp-page'),
(6172, 536, '_elementor_version', '4.1.4'),
(6173, 536, '_elementor_pro_version', '4.1.2'),
(6174, 536, '_elementor_global_class_usage_indexed', '1'),
(6175, 536, '_elementor_global_class_usage_indexed_preview', '1'),
(6176, 536, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6177, 536, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6142, 533, '_elementor_edit_mode', 'builder'),
(6143, 533, '_elementor_template_type', 'page'),
(6144, 533, '_elementor_version', '4.1.4'),
(6145, 533, '_elementor_pro_version', '4.1.2');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6157, 533, '_elementor_data', '[{\"id\":\"3df8038f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"23afcf81\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"366c2842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3e7c70d3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a5b5342\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"22d5b385\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f325ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7818c118\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f5d87f3\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"506c5a82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"7395b383\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"223e06c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dd3021f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34deadd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"41ddb7ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2532b1db\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2ba46768\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73e58038\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"723d942c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"109dd737\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71150735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2163d573\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"f37cc80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"22a08f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d655d47\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"549cd480\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3b961552\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"7164e864\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"47689f73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"445425b8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"4d53553\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"2bf35d2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7f9af73e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"eb5ee5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"14e3e13b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"955fa34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"71d97c56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"4cb06670\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"2a496341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cc5df92\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"52db3678\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1070df6d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"76eb0938\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"44c3a93\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"6b9d833\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"125995fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a180a57\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6147, 533, '_elementor_global_class_usage_indexed', '1'),
(6148, 533, '_elementor_global_class_usage_indexed_preview', '1'),
(6149, 534, '_elementor_edit_mode', 'builder'),
(6150, 534, '_elementor_template_type', 'page'),
(6151, 534, '_elementor_version', '4.1.4'),
(6152, 534, '_elementor_pro_version', '4.1.2'),
(6153, 534, '_elementor_page_settings', 'a:0:{}'),
(6154, 534, '_elementor_global_class_usage_indexed', '1'),
(6155, 534, '_elementor_global_class_usage_indexed_preview', '1'),
(6156, 533, '_wp_page_template', 'elementor_header_footer'),
(6089, 528, '_wp_trash_meta_status', 'publish'),
(6090, 528, '_wp_trash_meta_time', '1783323712'),
(6132, 532, '_elementor_version', '4.1.4'),
(6133, 532, '_elementor_pro_version', '4.1.2'),
(6134, 532, '_elementor_global_class_usage_indexed', '1'),
(6135, 532, '_elementor_global_class_usage_indexed_preview', '1'),
(6136, 532, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6137, 532, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6130, 532, '_elementor_edit_mode', 'builder'),
(6131, 532, '_elementor_template_type', 'wp-page'),
(6115, 530, '_elementor_page_settings', 'a:0:{}'),
(6117, 531, '_wp_page_template', 'elementor_header_footer'),
(6118, 531, '_elementor_edit_mode', 'builder'),
(6119, 531, '_elementor_template_type', 'wp-page'),
(6120, 531, '_elementor_version', '4.1.4'),
(6121, 531, '_elementor_pro_version', '4.1.2'),
(6122, 531, '_elementor_global_class_usage_indexed', '1'),
(6123, 531, '_elementor_global_class_usage_indexed_preview', '1'),
(6124, 531, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6125, 531, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6127, 531, '_elementor_page_settings', 'a:0:{}'),
(6158, 535, '_elementor_edit_mode', 'builder'),
(6159, 535, '_elementor_template_type', 'page'),
(6160, 535, '_elementor_version', '4.1.4'),
(6161, 535, '_elementor_pro_version', '4.1.2'),
(6162, 535, '_elementor_global_class_usage_indexed', '1'),
(6163, 535, '_elementor_global_class_usage_indexed_preview', '1'),
(6164, 535, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6165, 535, '_elementor_data', '[{\"id\":\"3df8038f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"23afcf81\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"366c2842\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3e7c70d3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a5b5342\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"22d5b385\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f325ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7818c118\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6f5d87f3\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"506c5a82\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"7395b383\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"223e06c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3dd3021f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34deadd4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"41ddb7ce\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2532b1db\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2ba46768\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"73e58038\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"723d942c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"109dd737\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"71150735\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2163d573\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"f37cc80\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"22a08f52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d655d47\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"549cd480\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3b961552\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"7164e864\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"47689f73\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"445425b8\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"4d53553\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"2bf35d2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7f9af73e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"eb5ee5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"14e3e13b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"955fa34\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"71d97c56\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"4cb06670\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"2a496341\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cc5df92\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"52db3678\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1070df6d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"76eb0938\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"44c3a93\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"6b9d833\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"125995fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a180a57\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6167, 533, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6168, 533, '_elementor_controls_usage', 'a:9:{s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:5;s:10:\"image_size\";i:5;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"_section_style\";a:6:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:3:{s:25:\"motion_fx_motion_fx_mouse\";i:1;s:27:\"motion_fx_mouseTrack_effect\";i:1;s:26:\"motion_fx_mouseTrack_speed\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:19:\"image_border_radius\";i:4;s:5:\"align\";i:2;s:5:\"width\";i:2;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:15;s:5:\"width\";i:7;s:20:\"flex_justify_content\";i:7;s:14:\"flex_direction\";i:6;s:8:\"flex_gap\";i:3;s:16:\"flex_align_items\";i:2;s:11:\"boxed_width\";i:1;s:9:\"flex_wrap\";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:21;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_radius\";i:7;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:21;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:13;s:10:\"_flex_size\";i:1;s:6:\"margin\";i:3;s:11:\"css_classes\";i:4;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:12;s:18:\"animation_duration\";i:7;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:1;}s:18:\"section_text_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:4;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;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:7;s:4:\"link\";i:7;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:6;s:12:\"border_width\";i:4;s:16:\"background_color\";i:3;s:13:\"border_border\";i:3;}}}}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:4:{s:13:\"selected_icon\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:10:\"title_size\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_style_box\";a:2:{s:10:\"text_align\";i:1;s:18:\"title_bottom_space\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"image-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:13:\"section_image\";a:4:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:1:{s:18:\"title_bottom_space\";i:3;}s:19:\"section_style_image\";a:5:{s:10:\"image_size\";i:3;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_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:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:5:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:1;s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:2:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(6179, 536, '_elementor_page_settings', 'a:0:{}'),
(6180, 537, '_wp_page_template', 'elementor_header_footer'),
(6181, 537, '_elementor_edit_mode', 'builder'),
(6182, 537, '_elementor_template_type', 'wp-page'),
(6183, 537, '_elementor_version', '4.1.4'),
(6184, 537, '_elementor_pro_version', '4.1.2'),
(6185, 537, '_elementor_global_class_usage_indexed', '1'),
(6186, 537, '_elementor_global_class_usage_indexed_preview', '1'),
(6187, 537, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6188, 537, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":236,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Everwell Longevity & Wellness\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6190, 537, '_elementor_page_settings', 'a:0:{}'),
(6191, 538, '_wp_page_template', 'elementor_header_footer'),
(6192, 538, '_elementor_edit_mode', 'builder'),
(6193, 538, '_elementor_template_type', 'wp-page'),
(6194, 538, '_elementor_version', '4.1.4'),
(6195, 538, '_elementor_pro_version', '4.1.2'),
(6196, 538, '_elementor_global_class_usage_indexed', '1'),
(6197, 538, '_elementor_global_class_usage_indexed_preview', '1'),
(6198, 538, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6199, 538, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304dc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness \\u2022 Mind \\u2022 Metabolism \\u2022 Longevity\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6203, 539, '_wp_page_template', 'elementor_header_footer'),
(6204, 539, '_elementor_edit_mode', 'builder'),
(6205, 539, '_elementor_template_type', 'wp-page'),
(6206, 539, '_elementor_version', '4.1.4'),
(6207, 539, '_elementor_pro_version', '4.1.2'),
(6208, 539, '_elementor_global_class_usage_indexed', '1'),
(6209, 539, '_elementor_global_class_usage_indexed_preview', '1'),
(6210, 539, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6211, 539, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304dc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness \\u2022 Mind \\u2022 Metabolism \\u2022 Longevity\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6213, 539, '_elementor_page_settings', 'a:0:{}'),
(6214, 540, '_wp_page_template', 'elementor_header_footer'),
(6215, 540, '_elementor_edit_mode', 'builder'),
(6216, 540, '_elementor_template_type', 'wp-page'),
(6217, 540, '_elementor_version', '4.1.4'),
(6218, 540, '_elementor_pro_version', '4.1.2'),
(6219, 540, '_elementor_global_class_usage_indexed', '1'),
(6220, 540, '_elementor_global_class_usage_indexed_preview', '1'),
(6221, 540, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6222, 540, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d304dc8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Wellness \\u2022 Mind \\u2022 Metabolism \\u2022 Longevity\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6224, 540, '_elementor_page_settings', 'a:0:{}'),
(6225, 541, '_wp_page_template', 'elementor_header_footer'),
(6226, 541, '_elementor_edit_mode', 'builder'),
(6227, 541, '_elementor_template_type', 'wp-page'),
(6228, 541, '_elementor_version', '4.1.4'),
(6229, 541, '_elementor_pro_version', '4.1.2'),
(6230, 541, '_elementor_global_class_usage_indexed', '1'),
(6231, 541, '_elementor_global_class_usage_indexed_preview', '1'),
(6232, 541, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6233, 541, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6239, 542, '_wp_page_template', 'elementor_header_footer'),
(6240, 542, '_elementor_edit_mode', 'builder'),
(6241, 542, '_elementor_template_type', 'wp-page'),
(6242, 542, '_elementor_version', '4.1.4'),
(6243, 542, '_elementor_pro_version', '4.1.2'),
(6244, 542, '_elementor_global_class_usage_indexed', '1'),
(6245, 542, '_elementor_global_class_usage_indexed_preview', '1'),
(6246, 542, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6247, 542, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6279, 545, '_wp_page_template', 'elementor_header_footer'),
(6280, 545, '_elementor_edit_mode', 'builder'),
(6281, 545, '_elementor_template_type', 'wp-page'),
(6282, 545, '_elementor_version', '4.1.4'),
(6283, 545, '_elementor_pro_version', '4.1.2'),
(6284, 545, '_elementor_global_class_usage_indexed', '1'),
(6285, 545, '_elementor_global_class_usage_indexed_preview', '1'),
(6286, 545, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6287, 545, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6249, 542, '_elementor_page_settings', 'a:0:{}'),
(6252, 543, '_wp_page_template', 'elementor_header_footer'),
(6253, 543, '_elementor_edit_mode', 'builder'),
(6254, 543, '_elementor_template_type', 'wp-page'),
(6255, 543, '_elementor_version', '4.1.4'),
(6256, 543, '_elementor_pro_version', '4.1.2'),
(6257, 543, '_elementor_global_class_usage_indexed', '1'),
(6258, 543, '_elementor_global_class_usage_indexed_preview', '1'),
(6259, 543, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6260, 543, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6262, 543, '_elementor_page_settings', 'a:0:{}'),
(6265, 544, '_wp_page_template', 'elementor_header_footer'),
(6266, 544, '_elementor_edit_mode', 'builder'),
(6267, 544, '_elementor_template_type', 'wp-page'),
(6268, 544, '_elementor_version', '4.1.4'),
(6269, 544, '_elementor_pro_version', '4.1.2'),
(6270, 544, '_elementor_global_class_usage_indexed', '1'),
(6271, 544, '_elementor_global_class_usage_indexed_preview', '1'),
(6272, 544, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6273, 544, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6289, 545, '_elementor_page_settings', 'a:0:{}'),
(6290, 546, '_wp_page_template', 'elementor_header_footer'),
(6291, 546, '_elementor_edit_mode', 'builder'),
(6292, 546, '_elementor_template_type', 'wp-page'),
(6293, 546, '_elementor_version', '4.1.4'),
(6294, 546, '_elementor_pro_version', '4.1.2'),
(6295, 546, '_elementor_global_class_usage_indexed', '1'),
(6296, 546, '_elementor_global_class_usage_indexed_preview', '1'),
(6297, 546, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6298, 546, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6300, 546, '_elementor_page_settings', 'a:0:{}'),
(6301, 547, '_wp_page_template', 'elementor_header_footer'),
(6302, 547, '_elementor_edit_mode', 'builder'),
(6303, 547, '_elementor_template_type', 'wp-page'),
(6304, 547, '_elementor_version', '4.1.4'),
(6305, 547, '_elementor_pro_version', '4.1.2'),
(6306, 547, '_elementor_global_class_usage_indexed', '1'),
(6307, 547, '_elementor_global_class_usage_indexed_preview', '1'),
(6308, 547, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6309, 547, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6315, 548, '_wp_page_template', 'elementor_header_footer'),
(6316, 548, '_elementor_edit_mode', 'builder'),
(6317, 548, '_elementor_template_type', 'wp-page'),
(6318, 548, '_elementor_version', '4.1.4'),
(6319, 548, '_elementor_pro_version', '4.1.2'),
(6320, 548, '_elementor_global_class_usage_indexed', '1'),
(6321, 548, '_elementor_global_class_usage_indexed_preview', '1'),
(6322, 548, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6323, 548, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6359, 552, '_wp_page_template', 'elementor_header_footer'),
(6360, 552, '_elementor_edit_mode', 'builder'),
(6361, 552, '_elementor_template_type', 'wp-page'),
(6362, 552, '_elementor_version', '4.1.4'),
(6363, 552, '_elementor_pro_version', '4.1.2'),
(6364, 552, '_elementor_global_class_usage_indexed', '1'),
(6365, 552, '_elementor_global_class_usage_indexed_preview', '1'),
(6366, 552, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6367, 552, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6325, 548, '_elementor_page_settings', 'a:0:{}'),
(6328, 549, '_wp_page_template', 'elementor_header_footer'),
(6329, 549, '_elementor_edit_mode', 'builder'),
(6330, 549, '_elementor_template_type', 'wp-page'),
(6331, 549, '_elementor_version', '4.1.4'),
(6332, 549, '_elementor_pro_version', '4.1.2'),
(6333, 549, '_elementor_global_class_usage_indexed', '1'),
(6334, 549, '_elementor_global_class_usage_indexed_preview', '1'),
(6335, 549, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6336, 549, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6338, 549, '_elementor_page_settings', 'a:0:{}'),
(6341, 550, '_wp_page_template', 'elementor_header_footer'),
(6342, 550, '_elementor_edit_mode', 'builder'),
(6343, 550, '_elementor_template_type', 'wp-page'),
(6344, 550, '_elementor_version', '4.1.4'),
(6345, 550, '_elementor_pro_version', '4.1.2'),
(6346, 550, '_elementor_global_class_usage_indexed', '1'),
(6347, 550, '_elementor_global_class_usage_indexed_preview', '1'),
(6348, 550, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6349, 550, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6401, 555, '_wp_page_template', 'elementor_header_footer'),
(6402, 555, '_elementor_edit_mode', 'builder'),
(6403, 555, '_elementor_template_type', 'wp-page'),
(6404, 555, '_elementor_version', '4.1.4'),
(6405, 555, '_elementor_pro_version', '4.1.2'),
(6406, 555, '_elementor_global_class_usage_indexed', '1'),
(6407, 555, '_elementor_global_class_usage_indexed_preview', '1'),
(6408, 555, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6409, 555, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6357, 551, '_wp_attached_file', '2026/07/Mental-Wellness-aa.jpg'),
(6358, 551, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2026/07/Mental-Wellness-aa.jpg\";s:8:\"filesize\";i:131730;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Mental-Wellness-aa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21983;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Mental-Wellness-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7241;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Mental-Wellness-aa-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107498;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(6369, 552, '_elementor_page_settings', 'a:0:{}'),
(6372, 553, '_wp_page_template', 'elementor_header_footer'),
(6373, 553, '_elementor_edit_mode', 'builder'),
(6374, 553, '_elementor_template_type', 'wp-page'),
(6375, 553, '_elementor_version', '4.1.4'),
(6376, 553, '_elementor_pro_version', '4.1.2'),
(6377, 553, '_elementor_global_class_usage_indexed', '1'),
(6378, 553, '_elementor_global_class_usage_indexed_preview', '1'),
(6379, 553, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6380, 553, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6382, 553, '_elementor_page_settings', 'a:0:{}'),
(6385, 554, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6386, 554, '_elementor_edit_mode', 'builder'),
(6387, 554, '_elementor_template_type', 'wp-page'),
(6388, 554, '_elementor_version', '4.1.4'),
(6389, 554, '_elementor_pro_version', '4.1.2'),
(6390, 554, '_elementor_global_class_usage_indexed', '1'),
(6391, 554, '_elementor_global_class_usage_indexed_preview', '1'),
(6392, 554, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6393, 554, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6554, 567, '_wp_page_template', 'elementor_header_footer'),
(6528, 565, '_wp_page_template', 'elementor_header_footer'),
(6529, 565, '_elementor_edit_mode', 'builder'),
(6530, 565, '_elementor_template_type', 'wp-page'),
(6531, 565, '_elementor_version', '4.1.4'),
(6532, 565, '_elementor_pro_version', '4.1.2'),
(6533, 565, '_elementor_global_class_usage_indexed', '1'),
(6534, 565, '_elementor_global_class_usage_indexed_preview', '1'),
(6535, 565, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6536, 565, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6411, 555, '_elementor_page_settings', 'a:0:{}'),
(6414, 556, '_wp_page_template', 'elementor_header_footer'),
(6415, 556, '_elementor_edit_mode', 'builder'),
(6416, 556, '_elementor_template_type', 'wp-page'),
(6417, 556, '_elementor_version', '4.1.4'),
(6418, 556, '_elementor_pro_version', '4.1.2'),
(6419, 556, '_elementor_global_class_usage_indexed', '1'),
(6420, 556, '_elementor_global_class_usage_indexed_preview', '1'),
(6421, 556, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6422, 556, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6424, 556, '_elementor_page_settings', 'a:0:{}'),
(6427, 557, '_wp_page_template', 'elementor_header_footer'),
(6428, 557, '_elementor_edit_mode', 'builder'),
(6429, 557, '_elementor_template_type', 'wp-page'),
(6430, 557, '_elementor_version', '4.1.4'),
(6431, 557, '_elementor_pro_version', '4.1.2'),
(6432, 557, '_elementor_global_class_usage_indexed', '1'),
(6433, 557, '_elementor_global_class_usage_indexed_preview', '1'),
(6434, 557, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6435, 557, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6692, 577, '_wp_page_template', 'elementor_header_footer'),
(6668, 575, '_wp_page_template', 'elementor_header_footer'),
(6669, 575, '_elementor_edit_mode', 'builder'),
(6670, 575, '_elementor_template_type', 'wp-page'),
(6671, 575, '_elementor_version', '4.1.4'),
(6672, 575, '_elementor_pro_version', '4.1.2'),
(6673, 575, '_elementor_global_class_usage_indexed', '1'),
(6674, 575, '_elementor_global_class_usage_indexed_preview', '1'),
(6675, 575, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6676, 575, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6443, 533, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6454, 558, '_elementor_page_settings', 'a:0:{}'),
(6457, 559, '_wp_page_template', 'default'),
(6459, 559, '_elementor_global_class_usage_indexed', '1'),
(6460, 559, '_elementor_edit_mode', 'builder'),
(6461, 559, '_elementor_template_type', 'wp-page'),
(6462, 559, '_elementor_version', '4.1.4'),
(6463, 559, '_elementor_pro_version', '4.1.2'),
(6464, 559, '_elementor_global_class_usage_indexed_preview', '1'),
(6465, 559, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6466, 559, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6467, 559, '_elementor_page_settings', 'a:0:{}'),
(6470, 560, '_wp_page_template', 'default'),
(6472, 560, '_elementor_global_class_usage_indexed', '1'),
(6473, 560, '_elementor_edit_mode', 'builder'),
(6474, 560, '_elementor_template_type', 'wp-page'),
(6475, 560, '_elementor_version', '4.1.4'),
(6476, 560, '_elementor_pro_version', '4.1.2'),
(6477, 560, '_elementor_global_class_usage_indexed_preview', '1'),
(6478, 560, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6479, 560, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6958, 598, '_wp_page_template', 'default'),
(6932, 596, '_wp_page_template', 'default'),
(6934, 596, '_elementor_global_class_usage_indexed', '1'),
(6935, 596, '_elementor_edit_mode', 'builder'),
(6936, 596, '_elementor_template_type', 'wp-page'),
(6937, 596, '_elementor_version', '4.1.4'),
(6938, 596, '_elementor_pro_version', '4.1.2'),
(6939, 596, '_elementor_global_class_usage_indexed_preview', '1'),
(6940, 596, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6941, 596, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6486, 561, '_wp_attached_file', '2026/07/Aesthetics-sab.jpg'),
(6487, 561, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2026/07/Aesthetics-sab.jpg\";s:8:\"filesize\";i:64934;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Aesthetics-sab-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12502;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Aesthetics-sab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4594;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"Aesthetics-sab-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57067;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(6498, 562, '_elementor_page_settings', 'a:0:{}'),
(6501, 563, '_wp_page_template', 'default'),
(6503, 563, '_elementor_global_class_usage_indexed', '1'),
(6504, 563, '_elementor_edit_mode', 'builder'),
(6505, 563, '_elementor_template_type', 'wp-page'),
(6506, 563, '_elementor_version', '4.1.4'),
(6507, 563, '_elementor_pro_version', '4.1.2'),
(6508, 563, '_elementor_global_class_usage_indexed_preview', '1'),
(6509, 563, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6510, 563, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6511, 563, '_elementor_page_settings', 'a:0:{}'),
(6516, 564, '_elementor_global_class_usage_indexed', '1'),
(6517, 564, '_elementor_edit_mode', 'builder'),
(6518, 564, '_elementor_template_type', 'wp-page'),
(6519, 564, '_elementor_version', '4.1.4'),
(6520, 564, '_elementor_pro_version', '4.1.2'),
(6521, 564, '_elementor_global_class_usage_indexed_preview', '1'),
(6522, 564, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6523, 564, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6538, 565, '_elementor_page_settings', 'a:0:{}'),
(6541, 566, '_wp_page_template', 'elementor_header_footer'),
(6542, 566, '_elementor_edit_mode', 'builder'),
(6543, 566, '_elementor_template_type', 'wp-page'),
(6544, 566, '_elementor_version', '4.1.4'),
(6545, 566, '_elementor_pro_version', '4.1.2'),
(6546, 566, '_elementor_global_class_usage_indexed', '1'),
(6547, 566, '_elementor_global_class_usage_indexed_preview', '1'),
(6548, 566, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6549, 566, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6551, 566, '_elementor_page_settings', 'a:0:{}'),
(6555, 567, '_elementor_edit_mode', 'builder'),
(6556, 567, '_elementor_template_type', 'wp-page'),
(6557, 567, '_elementor_version', '4.1.4'),
(6558, 567, '_elementor_pro_version', '4.1.2'),
(6559, 567, '_elementor_global_class_usage_indexed', '1'),
(6560, 567, '_elementor_global_class_usage_indexed_preview', '1'),
(6561, 567, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6562, 567, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6727, 580, '_wp_page_template', 'elementor_header_footer'),
(6705, 578, '_wp_page_template', 'elementor_header_footer'),
(6706, 578, '_elementor_edit_mode', 'builder'),
(6707, 578, '_elementor_template_type', 'wp-page'),
(6708, 578, '_elementor_version', '4.1.4'),
(6709, 578, '_elementor_pro_version', '4.1.2'),
(6710, 578, '_elementor_global_class_usage_indexed', '1'),
(6711, 578, '_elementor_global_class_usage_indexed_preview', '1'),
(6712, 578, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6713, 578, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6580, 568, '_elementor_page_settings', 'a:0:{}'),
(6583, 569, '_wp_page_template', 'default'),
(6585, 569, '_elementor_global_class_usage_indexed', '1'),
(6586, 569, '_elementor_edit_mode', 'builder'),
(6587, 569, '_elementor_template_type', 'wp-page'),
(6588, 569, '_elementor_version', '4.1.4'),
(6589, 569, '_elementor_pro_version', '4.1.2'),
(6590, 569, '_elementor_global_class_usage_indexed_preview', '1'),
(6591, 569, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6592, 569, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6593, 569, '_elementor_page_settings', 'a:0:{}'),
(6598, 570, '_elementor_global_class_usage_indexed', '1'),
(6599, 570, '_elementor_edit_mode', 'builder'),
(6600, 570, '_elementor_template_type', 'wp-page'),
(6601, 570, '_elementor_version', '4.1.4'),
(6602, 570, '_elementor_pro_version', '4.1.2'),
(6603, 570, '_elementor_global_class_usage_indexed_preview', '1'),
(6604, 570, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6605, 570, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6623, 572, '_wp_page_template', 'elementor_header_footer'),
(6625, 572, '_elementor_global_class_usage_indexed', '1'),
(6626, 572, '_elementor_edit_mode', 'builder'),
(6627, 572, '_elementor_template_type', 'wp-page'),
(6628, 572, '_elementor_version', '4.1.4'),
(6629, 572, '_elementor_pro_version', '4.1.2'),
(6630, 572, '_elementor_global_class_usage_indexed_preview', '1'),
(6631, 572, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6632, 572, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6633, 572, '_elementor_page_settings', 'a:0:{}'),
(6636, 573, '_wp_page_template', 'elementor_header_footer'),
(6638, 573, '_elementor_global_class_usage_indexed', '1'),
(6639, 573, '_elementor_edit_mode', 'builder'),
(6640, 573, '_elementor_template_type', 'wp-page'),
(6641, 573, '_elementor_version', '4.1.4'),
(6642, 573, '_elementor_pro_version', '4.1.2'),
(6643, 573, '_elementor_global_class_usage_indexed_preview', '1'),
(6644, 573, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6645, 573, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10538, 890, '_elementor_global_class_usage_indexed', '1'),
(10539, 890, '_elementor_edit_mode', 'builder'),
(10540, 890, '_elementor_template_type', 'wp-page'),
(10541, 890, '_elementor_version', '4.1.4'),
(10542, 890, '_elementor_pro_version', '4.1.2'),
(10543, 890, '_elementor_global_class_usage_indexed_preview', '1'),
(10544, 890, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10545, 890, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c21694\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(7014, 602, '_wp_page_template', 'default'),
(7016, 602, '_elementor_global_class_usage_indexed', '1'),
(7017, 602, '_elementor_edit_mode', 'builder'),
(7018, 602, '_elementor_template_type', 'wp-page'),
(7019, 602, '_elementor_version', '4.1.4'),
(7020, 602, '_elementor_pro_version', '4.1.2'),
(7021, 602, '_elementor_global_class_usage_indexed_preview', '1'),
(7022, 602, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7023, 602, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li style=\\\"list-style-type: none;\\\"><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6696, 577, '_elementor_pro_version', '4.1.2'),
(6697, 577, '_elementor_global_class_usage_indexed', '1'),
(6698, 577, '_elementor_global_class_usage_indexed_preview', '1'),
(6699, 577, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6700, 577, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6693, 577, '_elementor_edit_mode', 'builder'),
(6694, 577, '_elementor_template_type', 'wp-page'),
(6695, 577, '_elementor_version', '4.1.4'),
(6678, 575, '_elementor_page_settings', 'a:0:{}'),
(6680, 576, '_wp_page_template', 'elementor_header_footer'),
(6681, 576, '_elementor_edit_mode', 'builder'),
(6682, 576, '_elementor_template_type', 'wp-page'),
(6683, 576, '_elementor_version', '4.1.4'),
(6684, 576, '_elementor_pro_version', '4.1.2'),
(6685, 576, '_elementor_global_class_usage_indexed', '1'),
(6686, 576, '_elementor_global_class_usage_indexed_preview', '1'),
(6687, 576, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6688, 576, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6690, 576, '_elementor_page_settings', 'a:0:{}'),
(6715, 578, '_elementor_page_settings', 'a:0:{}'),
(6716, 579, '_wp_page_template', 'elementor_header_footer'),
(6717, 579, '_elementor_edit_mode', 'builder'),
(6718, 579, '_elementor_template_type', 'wp-page'),
(6719, 579, '_elementor_version', '4.1.4'),
(6720, 579, '_elementor_pro_version', '4.1.2'),
(6721, 579, '_elementor_global_class_usage_indexed', '1'),
(6722, 579, '_elementor_global_class_usage_indexed_preview', '1'),
(6723, 579, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6724, 579, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6726, 579, '_elementor_page_settings', 'a:0:{}'),
(6728, 580, '_elementor_edit_mode', 'builder'),
(6729, 580, '_elementor_template_type', 'wp-page'),
(6730, 580, '_elementor_version', '4.1.4'),
(6731, 580, '_elementor_pro_version', '4.1.2'),
(6732, 580, '_elementor_global_class_usage_indexed', '1'),
(6733, 580, '_elementor_global_class_usage_indexed_preview', '1'),
(6734, 580, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6735, 580, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL Longevity &amp; Wellness providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6778, 584, '_wp_page_template', 'elementor_header_footer'),
(6756, 582, '_wp_page_template', 'elementor_header_footer'),
(6757, 582, '_elementor_edit_mode', 'builder'),
(6758, 582, '_elementor_template_type', 'wp-page'),
(6759, 582, '_elementor_version', '4.1.4'),
(6760, 582, '_elementor_pro_version', '4.1.2'),
(6761, 582, '_elementor_global_class_usage_indexed', '1'),
(6762, 582, '_elementor_global_class_usage_indexed_preview', '1'),
(6763, 582, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6764, 582, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL Longevity &amp; Wellness providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6749, 581, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6752, 581, '_elementor_screenshot_failed', '2026-07-05 12:56:00'),
(6766, 582, '_elementor_page_settings', 'a:0:{}'),
(6767, 583, '_wp_page_template', 'elementor_header_footer'),
(6768, 583, '_elementor_edit_mode', 'builder'),
(6769, 583, '_elementor_template_type', 'wp-page'),
(6770, 583, '_elementor_version', '4.1.4'),
(6771, 583, '_elementor_pro_version', '4.1.2'),
(6772, 583, '_elementor_global_class_usage_indexed', '1'),
(6773, 583, '_elementor_global_class_usage_indexed_preview', '1'),
(6774, 583, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6775, 583, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL Longevity &amp; Wellness providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6777, 583, '_elementor_page_settings', 'a:0:{}'),
(6779, 584, '_elementor_edit_mode', 'builder'),
(6780, 584, '_elementor_template_type', 'wp-page'),
(6781, 584, '_elementor_version', '4.1.4'),
(6782, 584, '_elementor_pro_version', '4.1.2'),
(6783, 584, '_elementor_global_class_usage_indexed', '1'),
(6784, 584, '_elementor_global_class_usage_indexed_preview', '1'),
(6785, 584, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6786, 584, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7219, 619, '_wp_page_template', 'elementor_header_footer'),
(7220, 619, '_elementor_edit_mode', 'builder'),
(7221, 619, '_elementor_template_type', 'wp-page'),
(7222, 619, '_elementor_version', '4.1.4'),
(7223, 619, '_elementor_pro_version', '4.1.2'),
(7224, 619, '_elementor_global_class_usage_indexed', '1'),
(7225, 619, '_elementor_global_class_usage_indexed_preview', '1'),
(7226, 619, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7227, 619, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7256, 622, '_wp_page_template', 'elementor_header_footer'),
(7257, 622, '_elementor_edit_mode', 'builder'),
(7258, 622, '_elementor_template_type', 'wp-page'),
(7259, 622, '_elementor_version', '4.1.4'),
(7260, 622, '_elementor_pro_version', '4.1.2'),
(7261, 622, '_elementor_global_class_usage_indexed', '1'),
(7262, 622, '_elementor_global_class_usage_indexed_preview', '1'),
(7263, 622, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7264, 622, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7992, 681, '_elementor_edit_mode', 'builder'),
(7993, 681, '_elementor_template_type', 'footer'),
(7994, 681, '_elementor_version', '4.1.4'),
(7995, 681, '_elementor_pro_version', '4.1.2'),
(7996, 681, '_elementor_global_class_usage_indexed', '1'),
(7997, 681, '_elementor_global_class_usage_indexed_preview', '1'),
(7998, 681, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7999, 681, '_wp_page_template', 'default'),
(8000, 681, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1d7bbb08\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50bb0ee\",\"elType\":\"widget\",\"settings\":{\"address\":\"300 Murrell Street Homer, LA 71040\",\"pp_display_conditions\":[{\"_id\":\"1e8d886\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(6803, 585, '_elementor_page_settings', 'a:0:{}'),
(6806, 586, '_wp_page_template', 'elementor_header_footer'),
(6808, 586, '_elementor_global_class_usage_indexed', '1'),
(6809, 586, '_elementor_edit_mode', 'builder'),
(6810, 586, '_elementor_template_type', 'wp-page'),
(6811, 586, '_elementor_version', '4.1.4'),
(6812, 586, '_elementor_pro_version', '4.1.2'),
(6813, 586, '_elementor_global_class_usage_indexed_preview', '1'),
(6814, 586, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6815, 586, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6816, 586, '_elementor_page_settings', 'a:0:{}'),
(6821, 587, '_elementor_global_class_usage_indexed', '1'),
(6822, 587, '_elementor_edit_mode', 'builder'),
(6823, 587, '_elementor_template_type', 'wp-page'),
(6824, 587, '_elementor_version', '4.1.4'),
(6825, 587, '_elementor_pro_version', '4.1.2'),
(6826, 587, '_elementor_global_class_usage_indexed_preview', '1'),
(6827, 587, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6828, 587, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8450, 722, '_wp_page_template', 'elementor_header_footer'),
(8428, 720, '_wp_page_template', 'elementor_header_footer'),
(8430, 720, '_elementor_global_class_usage_indexed', '1'),
(8431, 720, '_elementor_edit_mode', 'builder'),
(8432, 720, '_elementor_template_type', 'wp-page'),
(8433, 720, '_elementor_version', '4.1.4'),
(8434, 720, '_elementor_pro_version', '4.1.2'),
(8435, 720, '_elementor_global_class_usage_indexed_preview', '1'),
(8436, 720, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8437, 720, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8426, 719, '_wp_attached_file', '2026/07/Our-Mission-av.jpg'),
(7671, 656, '_wp_page_template', 'default'),
(7645, 654, '_wp_page_template', 'default'),
(7647, 654, '_elementor_global_class_usage_indexed', '1'),
(7648, 654, '_elementor_edit_mode', 'builder'),
(7649, 654, '_elementor_template_type', 'wp-page'),
(7650, 654, '_elementor_version', '4.1.4'),
(7651, 654, '_elementor_pro_version', '4.1.2'),
(7652, 654, '_elementor_global_class_usage_indexed_preview', '1'),
(7653, 654, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7654, 654, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7695, 657, '_elementor_page_settings', 'a:0:{}'),
(7698, 658, '_wp_page_template', 'default'),
(7700, 658, '_elementor_global_class_usage_indexed', '1'),
(7701, 658, '_elementor_edit_mode', 'builder'),
(7702, 658, '_elementor_template_type', 'wp-page'),
(7703, 658, '_elementor_version', '4.1.4'),
(7704, 658, '_elementor_pro_version', '4.1.2'),
(7705, 658, '_elementor_global_class_usage_indexed_preview', '1'),
(7706, 658, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7707, 658, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6877, 591, '_elementor_global_class_usage_indexed', '1'),
(6878, 591, '_elementor_edit_mode', 'builder'),
(6879, 591, '_elementor_template_type', 'wp-page'),
(6880, 591, '_elementor_version', '4.1.4'),
(6881, 591, '_elementor_pro_version', '4.1.2'),
(6882, 591, '_elementor_global_class_usage_indexed_preview', '1'),
(6883, 591, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6884, 591, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6861, 589, '_elementor_page_settings', 'a:0:{}'),
(6863, 590, '_wp_page_template', 'default'),
(6865, 590, '_elementor_global_class_usage_indexed', '1'),
(6866, 590, '_elementor_edit_mode', 'builder'),
(6867, 590, '_elementor_template_type', 'wp-page'),
(6868, 590, '_elementor_version', '4.1.4'),
(6869, 590, '_elementor_pro_version', '4.1.2'),
(6870, 590, '_elementor_global_class_usage_indexed_preview', '1'),
(6871, 590, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6872, 590, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns &amp; Sprains<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6873, 590, '_elementor_page_settings', 'a:0:{}'),
(9080, 774, '_wp_page_template', 'default'),
(9054, 772, '_wp_page_template', 'default'),
(9056, 772, '_elementor_global_class_usage_indexed', '1'),
(9057, 772, '_elementor_edit_mode', 'builder'),
(9058, 772, '_elementor_template_type', 'wp-page'),
(9059, 772, '_elementor_version', '4.1.4'),
(9060, 772, '_elementor_pro_version', '4.1.2'),
(9061, 772, '_elementor_global_class_usage_indexed_preview', '1'),
(9062, 772, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9063, 772, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6890, 592, '_wp_attached_file', '2026/07/Urgent-Care-health-care-a.jpg'),
(6891, 592, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:37:\"2026/07/Urgent-Care-health-care-a.jpg\";s:8:\"filesize\";i:90440;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Urgent-Care-health-care-a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18788;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Urgent-Care-health-care-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6466;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Urgent-Care-health-care-a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79526;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(6902, 593, '_elementor_page_settings', 'a:0:{}'),
(6905, 594, '_wp_page_template', 'default'),
(6907, 594, '_elementor_global_class_usage_indexed', '1'),
(6908, 594, '_elementor_edit_mode', 'builder'),
(6909, 594, '_elementor_template_type', 'wp-page'),
(6910, 594, '_elementor_version', '4.1.4'),
(6911, 594, '_elementor_pro_version', '4.1.2'),
(6912, 594, '_elementor_global_class_usage_indexed_preview', '1'),
(6913, 594, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6914, 594, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6915, 594, '_elementor_page_settings', 'a:0:{}'),
(6920, 595, '_elementor_global_class_usage_indexed', '1'),
(6921, 595, '_elementor_edit_mode', 'builder'),
(6922, 595, '_elementor_template_type', 'wp-page'),
(6923, 595, '_elementor_version', '4.1.4'),
(6924, 595, '_elementor_pro_version', '4.1.2'),
(6925, 595, '_elementor_global_class_usage_indexed_preview', '1'),
(6926, 595, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6927, 595, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6942, 596, '_elementor_page_settings', 'a:0:{}'),
(6945, 597, '_wp_page_template', 'default'),
(6947, 597, '_elementor_global_class_usage_indexed', '1'),
(6948, 597, '_elementor_edit_mode', 'builder'),
(6949, 597, '_elementor_template_type', 'wp-page'),
(6950, 597, '_elementor_version', '4.1.4'),
(6951, 597, '_elementor_pro_version', '4.1.2'),
(6952, 597, '_elementor_global_class_usage_indexed_preview', '1'),
(6953, 597, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6954, 597, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-s.jpg\",\"id\":263,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6955, 597, '_elementor_page_settings', 'a:0:{}'),
(6960, 598, '_elementor_global_class_usage_indexed', '1'),
(6961, 598, '_elementor_edit_mode', 'builder'),
(6962, 598, '_elementor_template_type', 'wp-page'),
(6963, 598, '_elementor_version', '4.1.4'),
(6964, 598, '_elementor_pro_version', '4.1.2'),
(6965, 598, '_elementor_global_class_usage_indexed_preview', '1'),
(6966, 598, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6967, 598, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7800, 666, '_wp_page_template', 'default'),
(7774, 664, '_wp_page_template', 'default'),
(7776, 664, '_elementor_global_class_usage_indexed', '1'),
(7777, 664, '_elementor_edit_mode', 'builder'),
(7778, 664, '_elementor_template_type', 'wp-page'),
(7779, 664, '_elementor_version', '4.1.4'),
(7780, 664, '_elementor_pro_version', '4.1.2'),
(7781, 664, '_elementor_global_class_usage_indexed_preview', '1'),
(7782, 664, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7783, 664, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6984, 599, '_elementor_page_settings', 'a:0:{}'),
(6987, 600, '_wp_page_template', 'default'),
(6989, 600, '_elementor_global_class_usage_indexed', '1'),
(6990, 600, '_elementor_edit_mode', 'builder'),
(6991, 600, '_elementor_template_type', 'wp-page'),
(6992, 600, '_elementor_version', '4.1.4'),
(6993, 600, '_elementor_pro_version', '4.1.2'),
(6994, 600, '_elementor_global_class_usage_indexed_preview', '1'),
(6995, 600, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(6996, 600, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>Medication Management<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(6997, 600, '_elementor_page_settings', 'a:0:{}'),
(7002, 601, '_elementor_global_class_usage_indexed', '1'),
(7003, 601, '_elementor_edit_mode', 'builder'),
(7004, 601, '_elementor_template_type', 'wp-page'),
(7005, 601, '_elementor_version', '4.1.4'),
(7006, 601, '_elementor_pro_version', '4.1.2'),
(7007, 601, '_elementor_global_class_usage_indexed_preview', '1'),
(7008, 601, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7009, 601, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li style=\\\"list-style-type: none;\\\"><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7024, 602, '_elementor_page_settings', 'a:0:{}'),
(7025, 603, '_wp_page_template', 'default'),
(7027, 603, '_elementor_global_class_usage_indexed', '1'),
(7028, 603, '_elementor_edit_mode', 'builder'),
(7029, 603, '_elementor_template_type', 'wp-page'),
(7030, 603, '_elementor_version', '4.1.4'),
(7031, 603, '_elementor_pro_version', '4.1.2'),
(7032, 603, '_elementor_global_class_usage_indexed_preview', '1'),
(7033, 603, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7034, 603, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li style=\\\"list-style-type: none;\\\"><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7035, 603, '_elementor_page_settings', 'a:0:{}'),
(7038, 604, '_elementor_global_class_usage_indexed', '1'),
(7039, 604, '_elementor_edit_mode', 'builder'),
(7040, 604, '_elementor_template_type', 'wp-page'),
(7041, 604, '_elementor_version', '4.1.4'),
(7042, 604, '_elementor_pro_version', '4.1.2'),
(7043, 604, '_elementor_global_class_usage_indexed_preview', '1'),
(7044, 604, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7045, 604, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7048, 605, '_wp_page_template', 'default'),
(7050, 605, '_elementor_global_class_usage_indexed', '1'),
(7051, 605, '_elementor_edit_mode', 'builder'),
(7052, 605, '_elementor_template_type', 'wp-page'),
(7053, 605, '_elementor_version', '4.1.4'),
(7054, 605, '_elementor_pro_version', '4.1.2'),
(7055, 605, '_elementor_global_class_usage_indexed_preview', '1'),
(7056, 605, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7057, 605, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7058, 605, '_elementor_page_settings', 'a:0:{}'),
(7059, 606, '_wp_page_template', 'default'),
(7061, 606, '_elementor_global_class_usage_indexed', '1'),
(7062, 606, '_elementor_edit_mode', 'builder'),
(7063, 606, '_elementor_template_type', 'wp-page'),
(7064, 606, '_elementor_version', '4.1.4'),
(7065, 606, '_elementor_pro_version', '4.1.2'),
(7066, 606, '_elementor_global_class_usage_indexed_preview', '1'),
(7067, 606, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7068, 606, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7069, 606, '_elementor_page_settings', 'a:0:{}'),
(7110, 610, '_wp_page_template', 'default'),
(7112, 610, '_elementor_global_class_usage_indexed', '1'),
(7113, 610, '_elementor_edit_mode', 'builder'),
(7114, 610, '_elementor_template_type', 'wp-page'),
(7115, 610, '_elementor_version', '4.1.4'),
(7116, 610, '_elementor_pro_version', '4.1.2'),
(7117, 610, '_elementor_global_class_usage_indexed_preview', '1'),
(7118, 610, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7119, 610, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7070, 607, '_wp_page_template', 'default'),
(7072, 607, '_elementor_global_class_usage_indexed', '1'),
(7073, 607, '_elementor_edit_mode', 'builder'),
(7074, 607, '_elementor_template_type', 'wp-page'),
(7075, 607, '_elementor_version', '4.1.4'),
(7076, 607, '_elementor_pro_version', '4.1.2'),
(7077, 607, '_elementor_global_class_usage_indexed_preview', '1'),
(7078, 607, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7079, 607, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}]},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7084, 608, '_wp_page_template', 'default'),
(7086, 608, '_elementor_global_class_usage_indexed', '1'),
(7087, 608, '_elementor_edit_mode', 'builder'),
(7088, 608, '_elementor_template_type', 'wp-page'),
(7089, 608, '_elementor_version', '4.1.4'),
(7090, 608, '_elementor_pro_version', '4.1.2'),
(7091, 608, '_elementor_global_class_usage_indexed_preview', '1'),
(7092, 608, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7093, 608, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}]},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7124, 611, '_wp_page_template', 'default'),
(7126, 611, '_elementor_global_class_usage_indexed', '1'),
(7127, 611, '_elementor_edit_mode', 'builder'),
(7128, 611, '_elementor_template_type', 'wp-page'),
(7129, 611, '_elementor_version', '4.1.4'),
(7130, 611, '_elementor_pro_version', '4.1.2'),
(7131, 611, '_elementor_global_class_usage_indexed_preview', '1'),
(7132, 611, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7133, 611, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7134, 611, '_elementor_page_settings', 'a:0:{}'),
(7135, 612, '_wp_page_template', 'default'),
(7137, 612, '_elementor_global_class_usage_indexed', '1'),
(7138, 612, '_elementor_edit_mode', 'builder'),
(7139, 612, '_elementor_template_type', 'wp-page'),
(7140, 612, '_elementor_version', '4.1.4'),
(7141, 612, '_elementor_pro_version', '4.1.2'),
(7142, 612, '_elementor_global_class_usage_indexed_preview', '1'),
(7143, 612, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7144, 612, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7094, 608, '_elementor_page_settings', 'a:0:{}'),
(7097, 609, '_wp_page_template', 'default'),
(7099, 609, '_elementor_global_class_usage_indexed', '1'),
(7100, 609, '_elementor_edit_mode', 'builder'),
(7101, 609, '_elementor_template_type', 'wp-page'),
(7102, 609, '_elementor_version', '4.1.4'),
(7103, 609, '_elementor_pro_version', '4.1.2'),
(7104, 609, '_elementor_global_class_usage_indexed_preview', '1'),
(7105, 609, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7106, 609, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9b1178e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"175e3e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"10e2730\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"abf488d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0c9498d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4294c82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}]},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}]},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7107, 609, '_elementor_page_settings', 'a:0:{}'),
(7145, 612, '_elementor_page_settings', 'a:0:{}'),
(7146, 613, '_wp_page_template', 'default'),
(7148, 613, '_elementor_global_class_usage_indexed', '1'),
(7149, 613, '_elementor_edit_mode', 'builder'),
(7150, 613, '_elementor_template_type', 'wp-page'),
(7151, 613, '_elementor_version', '4.1.4'),
(7152, 613, '_elementor_pro_version', '4.1.2'),
(7153, 613, '_elementor_global_class_usage_indexed_preview', '1'),
(7154, 613, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7155, 613, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7160, 614, '_wp_page_template', 'default'),
(7162, 614, '_elementor_global_class_usage_indexed', '1'),
(7163, 614, '_elementor_edit_mode', 'builder'),
(7164, 614, '_elementor_template_type', 'wp-page'),
(7165, 614, '_elementor_version', '4.1.4'),
(7166, 614, '_elementor_pro_version', '4.1.2'),
(7167, 614, '_elementor_global_class_usage_indexed_preview', '1'),
(7168, 614, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7169, 614, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8996, 767, '_wp_page_template', 'default'),
(8954, 764, '_wp_page_template', 'default'),
(7936, 677, '_wp_page_template', 'default'),
(7938, 677, '_elementor_global_class_usage_indexed', '1'),
(7939, 677, '_elementor_edit_mode', 'builder'),
(7940, 677, '_elementor_template_type', 'wp-page'),
(7941, 677, '_elementor_version', '4.1.4'),
(7942, 677, '_elementor_pro_version', '4.1.2'),
(7943, 677, '_elementor_global_class_usage_indexed_preview', '1'),
(7944, 677, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7945, 677, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7170, 614, '_elementor_page_settings', 'a:0:{}'),
(7173, 615, '_wp_page_template', 'default'),
(7175, 615, '_elementor_global_class_usage_indexed', '1'),
(7176, 615, '_elementor_edit_mode', 'builder'),
(7177, 615, '_elementor_template_type', 'wp-page'),
(7178, 615, '_elementor_version', '4.1.4'),
(7179, 615, '_elementor_pro_version', '4.1.2'),
(7180, 615, '_elementor_global_class_usage_indexed_preview', '1'),
(7181, 615, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7182, 615, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7183, 615, '_elementor_page_settings', 'a:0:{}'),
(7186, 616, '_wp_page_template', 'default'),
(7188, 616, '_elementor_global_class_usage_indexed', '1'),
(7189, 616, '_elementor_edit_mode', 'builder'),
(7190, 616, '_elementor_template_type', 'wp-page'),
(7191, 616, '_elementor_version', '4.1.4'),
(7192, 616, '_elementor_pro_version', '4.1.2'),
(7193, 616, '_elementor_global_class_usage_indexed_preview', '1'),
(7194, 616, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7195, 616, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8928, 762, '_wp_page_template', 'default'),
(8930, 762, '_elementor_global_class_usage_indexed', '1'),
(8931, 762, '_elementor_edit_mode', 'builder'),
(8932, 762, '_elementor_template_type', 'wp-page'),
(8933, 762, '_elementor_version', '4.1.4'),
(8934, 762, '_elementor_pro_version', '4.1.2'),
(8935, 762, '_elementor_global_class_usage_indexed_preview', '1'),
(8936, 762, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8937, 762, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7243, 621, '_wp_page_template', 'elementor_header_footer'),
(7244, 621, '_elementor_edit_mode', 'builder'),
(7245, 621, '_elementor_template_type', 'wp-page'),
(7246, 621, '_elementor_version', '4.1.4'),
(7247, 621, '_elementor_pro_version', '4.1.2'),
(7248, 621, '_elementor_global_class_usage_indexed', '1'),
(7249, 621, '_elementor_global_class_usage_indexed_preview', '1'),
(7250, 621, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7251, 621, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7216, 618, '_wp_attached_file', '2026/07/contract_6201233.svg'),
(7217, 618, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2281;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7229, 619, '_elementor_page_settings', 'a:0:{}'),
(7231, 620, '_wp_page_template', 'elementor_header_footer'),
(7232, 620, '_elementor_edit_mode', 'builder'),
(7233, 620, '_elementor_template_type', 'wp-page'),
(7234, 620, '_elementor_version', '4.1.4'),
(7235, 620, '_elementor_pro_version', '4.1.2'),
(7236, 620, '_elementor_global_class_usage_indexed', '1'),
(7237, 620, '_elementor_global_class_usage_indexed_preview', '1'),
(7238, 620, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7239, 620, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7241, 620, '_elementor_page_settings', 'a:0:{}'),
(7266, 622, '_elementor_page_settings', 'a:0:{}'),
(7267, 623, '_wp_page_template', 'elementor_header_footer'),
(7268, 623, '_elementor_edit_mode', 'builder'),
(7269, 623, '_elementor_template_type', 'wp-page'),
(7270, 623, '_elementor_version', '4.1.4'),
(7271, 623, '_elementor_pro_version', '4.1.2'),
(7272, 623, '_elementor_global_class_usage_indexed', '1'),
(7273, 623, '_elementor_global_class_usage_indexed_preview', '1'),
(7274, 623, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7275, 623, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7277, 623, '_elementor_page_settings', 'a:0:{}'),
(7278, 624, '_wp_page_template', 'elementor_header_footer'),
(7279, 624, '_elementor_edit_mode', 'builder'),
(7280, 624, '_elementor_template_type', 'wp-page'),
(7281, 624, '_elementor_version', '4.1.4'),
(7282, 624, '_elementor_pro_version', '4.1.2'),
(7283, 624, '_elementor_global_class_usage_indexed', '1'),
(7284, 624, '_elementor_global_class_usage_indexed_preview', '1'),
(7285, 624, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7286, 624, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7290, 625, '_wp_page_template', 'elementor_header_footer'),
(7291, 625, '_elementor_edit_mode', 'builder'),
(7292, 625, '_elementor_template_type', 'wp-page'),
(7293, 625, '_elementor_version', '4.1.4'),
(7294, 625, '_elementor_pro_version', '4.1.2'),
(7295, 625, '_elementor_global_class_usage_indexed', '1'),
(7296, 625, '_elementor_global_class_usage_indexed_preview', '1'),
(7297, 625, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7298, 625, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7300, 625, '_elementor_page_settings', 'a:0:{}'),
(7301, 626, '_wp_page_template', 'elementor_header_footer'),
(7302, 626, '_elementor_edit_mode', 'builder'),
(7303, 626, '_elementor_template_type', 'wp-page'),
(7304, 626, '_elementor_version', '4.1.4'),
(7305, 626, '_elementor_pro_version', '4.1.2'),
(7306, 626, '_elementor_global_class_usage_indexed', '1'),
(7307, 626, '_elementor_global_class_usage_indexed_preview', '1'),
(7308, 626, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7309, 626, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7311, 626, '_elementor_page_settings', 'a:0:{}'),
(7346, 630, '_wp_page_template', 'elementor_header_footer'),
(7347, 630, '_elementor_edit_mode', 'builder'),
(7348, 630, '_elementor_template_type', 'wp-page'),
(7349, 630, '_elementor_version', '4.1.4'),
(7350, 630, '_elementor_pro_version', '4.1.2'),
(7351, 630, '_elementor_global_class_usage_indexed', '1'),
(7352, 630, '_elementor_global_class_usage_indexed_preview', '1'),
(7353, 630, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7354, 630, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1143,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7312, 627, '_wp_page_template', 'elementor_header_footer'),
(7313, 627, '_elementor_edit_mode', 'builder'),
(7314, 627, '_elementor_template_type', 'wp-page'),
(7315, 627, '_elementor_version', '4.1.4'),
(7316, 627, '_elementor_pro_version', '4.1.2'),
(7317, 627, '_elementor_global_class_usage_indexed', '1'),
(7318, 627, '_elementor_global_class_usage_indexed_preview', '1'),
(7319, 627, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7320, 627, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7324, 628, '_wp_page_template', 'elementor_header_footer'),
(7325, 628, '_elementor_edit_mode', 'builder'),
(7326, 628, '_elementor_template_type', 'wp-page'),
(7327, 628, '_elementor_version', '4.1.4'),
(7328, 628, '_elementor_pro_version', '4.1.2'),
(7329, 628, '_elementor_global_class_usage_indexed', '1'),
(7330, 628, '_elementor_global_class_usage_indexed_preview', '1'),
(7331, 628, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7332, 628, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7334, 628, '_elementor_page_settings', 'a:0:{}'),
(7335, 629, '_wp_page_template', 'elementor_header_footer'),
(7336, 629, '_elementor_edit_mode', 'builder'),
(7337, 629, '_elementor_template_type', 'wp-page'),
(7338, 629, '_elementor_version', '4.1.4'),
(7339, 629, '_elementor_pro_version', '4.1.2'),
(7340, 629, '_elementor_global_class_usage_indexed', '1'),
(7341, 629, '_elementor_global_class_usage_indexed_preview', '1'),
(7342, 629, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7343, 629, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d6fa59e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1691c0d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"position\":\"inline-start\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7345, 629, '_elementor_page_settings', 'a:0:{}'),
(7380, 633, '_wp_page_template', 'elementor_header_footer'),
(7358, 631, '_wp_page_template', 'elementor_header_footer'),
(7359, 631, '_elementor_edit_mode', 'builder'),
(7360, 631, '_elementor_template_type', 'wp-page'),
(7361, 631, '_elementor_version', '4.1.4'),
(7362, 631, '_elementor_pro_version', '4.1.2'),
(7363, 631, '_elementor_global_class_usage_indexed', '1'),
(7364, 631, '_elementor_global_class_usage_indexed_preview', '1'),
(7365, 631, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7366, 631, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1143,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7368, 631, '_elementor_page_settings', 'a:0:{}'),
(7369, 632, '_wp_page_template', 'elementor_header_footer'),
(7370, 632, '_elementor_edit_mode', 'builder'),
(7371, 632, '_elementor_template_type', 'wp-page'),
(7372, 632, '_elementor_version', '4.1.4'),
(7373, 632, '_elementor_pro_version', '4.1.2'),
(7374, 632, '_elementor_global_class_usage_indexed', '1'),
(7375, 632, '_elementor_global_class_usage_indexed_preview', '1'),
(7376, 632, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7377, 632, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1143,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7379, 632, '_elementor_page_settings', 'a:0:{}'),
(7381, 633, '_elementor_edit_mode', 'builder'),
(7382, 633, '_elementor_template_type', 'wp-page'),
(7383, 633, '_elementor_version', '4.1.4'),
(7384, 633, '_elementor_pro_version', '4.1.2'),
(7385, 633, '_elementor_global_class_usage_indexed', '1'),
(7386, 633, '_elementor_global_class_usage_indexed_preview', '1'),
(7387, 633, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7388, 633, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7423, 637, '_wp_page_template', 'elementor_header_footer'),
(7397, 635, '_wp_page_template', 'elementor_header_footer'),
(7398, 635, '_elementor_edit_mode', 'builder'),
(7399, 635, '_elementor_template_type', 'wp-page'),
(7400, 635, '_elementor_version', '4.1.4'),
(7401, 635, '_elementor_pro_version', '4.1.2'),
(7402, 635, '_elementor_global_class_usage_indexed', '1'),
(7403, 635, '_elementor_global_class_usage_indexed_preview', '1'),
(7404, 635, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7405, 635, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7439, 638, '_wp_page_template', 'elementor_header_footer'),
(7440, 638, '_elementor_edit_mode', 'builder'),
(7441, 638, '_elementor_template_type', 'wp-page'),
(7442, 638, '_elementor_version', '4.1.4'),
(7443, 638, '_elementor_pro_version', '4.1.2'),
(7444, 638, '_elementor_global_class_usage_indexed', '1'),
(7445, 638, '_elementor_global_class_usage_indexed_preview', '1'),
(7446, 638, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7447, 638, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7521, 644, '_wp_page_template', 'elementor_header_footer'),
(7522, 644, '_elementor_edit_mode', 'builder'),
(7523, 644, '_elementor_template_type', 'wp-page'),
(7524, 644, '_elementor_version', '4.1.4'),
(7525, 644, '_elementor_pro_version', '4.1.2'),
(7526, 644, '_elementor_global_class_usage_indexed', '1'),
(7527, 644, '_elementor_global_class_usage_indexed_preview', '1'),
(7528, 644, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7529, 644, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7394, 634, '_wp_attached_file', '2026/07/pay_15896636.svg'),
(7395, 634, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:2703;s:5:\"width\";i:128;s:6:\"height\";i:128;}'),
(7407, 635, '_elementor_page_settings', 'a:0:{}'),
(7410, 636, '_wp_page_template', 'elementor_header_footer'),
(7411, 636, '_elementor_edit_mode', 'builder'),
(7412, 636, '_elementor_template_type', 'wp-page'),
(7413, 636, '_elementor_version', '4.1.4'),
(7414, 636, '_elementor_pro_version', '4.1.2'),
(7415, 636, '_elementor_global_class_usage_indexed', '1'),
(7416, 636, '_elementor_global_class_usage_indexed_preview', '1'),
(7417, 636, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7418, 636, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7420, 636, '_elementor_page_settings', 'a:0:{}'),
(7424, 637, '_elementor_edit_mode', 'builder'),
(7425, 637, '_elementor_template_type', 'wp-page'),
(7426, 637, '_elementor_version', '4.1.4'),
(7427, 637, '_elementor_pro_version', '4.1.2'),
(7428, 637, '_elementor_global_class_usage_indexed', '1'),
(7429, 637, '_elementor_global_class_usage_indexed_preview', '1'),
(7430, 637, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7431, 637, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7481, 641, '_wp_page_template', 'elementor_header_footer'),
(7482, 641, '_elementor_edit_mode', 'builder'),
(7483, 641, '_elementor_template_type', 'wp-page'),
(7484, 641, '_elementor_version', '4.1.4'),
(7485, 641, '_elementor_pro_version', '4.1.2'),
(7486, 641, '_elementor_global_class_usage_indexed', '1'),
(7487, 641, '_elementor_global_class_usage_indexed_preview', '1'),
(7488, 641, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7489, 641, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7449, 638, '_elementor_page_settings', 'a:0:{}'),
(7452, 639, '_wp_page_template', 'elementor_header_footer'),
(7453, 639, '_elementor_edit_mode', 'builder'),
(7454, 639, '_elementor_template_type', 'wp-page'),
(7455, 639, '_elementor_version', '4.1.4'),
(7456, 639, '_elementor_pro_version', '4.1.2'),
(7457, 639, '_elementor_global_class_usage_indexed', '1'),
(7458, 639, '_elementor_global_class_usage_indexed_preview', '1'),
(7459, 639, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7460, 639, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7462, 639, '_elementor_page_settings', 'a:0:{}'),
(7465, 640, '_wp_page_template', 'elementor_header_footer'),
(7466, 640, '_elementor_edit_mode', 'builder'),
(7467, 640, '_elementor_template_type', 'wp-page'),
(7468, 640, '_elementor_version', '4.1.4'),
(7469, 640, '_elementor_pro_version', '4.1.2'),
(7470, 640, '_elementor_global_class_usage_indexed', '1'),
(7471, 640, '_elementor_global_class_usage_indexed_preview', '1'),
(7472, 640, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7473, 640, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7491, 641, '_elementor_page_settings', 'a:0:{}'),
(7494, 642, '_wp_page_template', 'elementor_header_footer'),
(7495, 642, '_elementor_edit_mode', 'builder'),
(7496, 642, '_elementor_template_type', 'wp-page'),
(7497, 642, '_elementor_version', '4.1.4'),
(7498, 642, '_elementor_pro_version', '4.1.2'),
(7499, 642, '_elementor_global_class_usage_indexed', '1'),
(7500, 642, '_elementor_global_class_usage_indexed_preview', '1'),
(7501, 642, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7502, 642, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7504, 642, '_elementor_page_settings', 'a:0:{}'),
(7507, 643, '_wp_page_template', 'elementor_header_footer'),
(7508, 643, '_elementor_edit_mode', 'builder'),
(7509, 643, '_elementor_template_type', 'wp-page'),
(7510, 643, '_elementor_version', '4.1.4'),
(7511, 643, '_elementor_pro_version', '4.1.2'),
(7512, 643, '_elementor_global_class_usage_indexed', '1'),
(7513, 643, '_elementor_global_class_usage_indexed_preview', '1'),
(7514, 643, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7515, 643, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7531, 644, '_elementor_page_settings', 'a:0:{}'),
(7532, 645, '_wp_page_template', 'elementor_header_footer'),
(7533, 645, '_elementor_edit_mode', 'builder'),
(7534, 645, '_elementor_template_type', 'wp-page'),
(7535, 645, '_elementor_version', '4.1.4'),
(7536, 645, '_elementor_pro_version', '4.1.2'),
(7537, 645, '_elementor_global_class_usage_indexed', '1'),
(7538, 645, '_elementor_global_class_usage_indexed_preview', '1'),
(7539, 645, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7540, 645, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7542, 645, '_elementor_page_settings', 'a:0:{}'),
(7543, 646, '_wp_page_template', 'elementor_header_footer'),
(7544, 646, '_elementor_edit_mode', 'builder'),
(7545, 646, '_elementor_template_type', 'wp-page'),
(7546, 646, '_elementor_version', '4.1.4'),
(7547, 646, '_elementor_pro_version', '4.1.2'),
(7548, 646, '_elementor_global_class_usage_indexed', '1'),
(7549, 646, '_elementor_global_class_usage_indexed_preview', '1'),
(7550, 646, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7551, 646, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7557, 647, '_wp_page_template', 'elementor_header_footer'),
(7558, 647, '_elementor_edit_mode', 'builder'),
(7559, 647, '_elementor_template_type', 'wp-page'),
(7560, 647, '_elementor_version', '4.1.4'),
(7561, 647, '_elementor_pro_version', '4.1.2'),
(7562, 647, '_elementor_global_class_usage_indexed', '1'),
(7563, 647, '_elementor_global_class_usage_indexed_preview', '1'),
(7564, 647, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7565, 647, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7627, 653, '_wp_page_template', 'elementor_header_footer'),
(7601, 651, '_wp_page_template', 'elementor_header_footer'),
(7602, 651, '_elementor_edit_mode', 'builder'),
(7603, 651, '_elementor_template_type', 'wp-page'),
(7604, 651, '_elementor_version', '4.1.4'),
(7605, 651, '_elementor_pro_version', '4.1.2'),
(7606, 651, '_elementor_global_class_usage_indexed', '1'),
(7607, 651, '_elementor_global_class_usage_indexed_preview', '1'),
(7608, 651, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7609, 651, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7567, 647, '_elementor_page_settings', 'a:0:{}'),
(7570, 648, '_wp_page_template', 'elementor_header_footer'),
(7571, 648, '_elementor_edit_mode', 'builder'),
(7572, 648, '_elementor_template_type', 'wp-page'),
(7573, 648, '_elementor_version', '4.1.4'),
(7574, 648, '_elementor_pro_version', '4.1.2'),
(7575, 648, '_elementor_global_class_usage_indexed', '1'),
(7576, 648, '_elementor_global_class_usage_indexed_preview', '1'),
(7577, 648, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7578, 648, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7580, 648, '_elementor_page_settings', 'a:0:{}'),
(7583, 649, '_wp_page_template', 'elementor_header_footer'),
(7584, 649, '_elementor_edit_mode', 'builder'),
(7585, 649, '_elementor_template_type', 'wp-page'),
(7586, 649, '_elementor_version', '4.1.4'),
(7587, 649, '_elementor_pro_version', '4.1.2'),
(7588, 649, '_elementor_global_class_usage_indexed', '1'),
(7589, 649, '_elementor_global_class_usage_indexed_preview', '1'),
(7590, 649, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7591, 649, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7756, 663, '_wp_page_template', 'elementor_header_footer'),
(7730, 661, '_wp_page_template', 'elementor_header_footer'),
(7731, 661, '_elementor_edit_mode', 'builder'),
(7732, 661, '_elementor_template_type', 'wp-page'),
(7733, 661, '_elementor_version', '4.1.4'),
(7734, 661, '_elementor_pro_version', '4.1.2'),
(7735, 661, '_elementor_global_class_usage_indexed', '1'),
(7736, 661, '_elementor_global_class_usage_indexed_preview', '1'),
(7737, 661, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7738, 661, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7599, 650, '_wp_attached_file', '2026/07/weight-loss-ab.webp'),
(7600, 650, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2026/07/weight-loss-ab.webp\";s:8:\"filesize\";i:100012;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"weight-loss-ab-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8594;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"weight-loss-ab-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4526;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"weight-loss-ab-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27788;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(7611, 651, '_elementor_page_settings', 'a:0:{}'),
(7614, 652, '_wp_page_template', 'elementor_header_footer'),
(7615, 652, '_elementor_edit_mode', 'builder'),
(7616, 652, '_elementor_template_type', 'wp-page'),
(7617, 652, '_elementor_version', '4.1.4'),
(7618, 652, '_elementor_pro_version', '4.1.2'),
(7619, 652, '_elementor_global_class_usage_indexed', '1'),
(7620, 652, '_elementor_global_class_usage_indexed_preview', '1'),
(7621, 652, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7622, 652, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7624, 652, '_elementor_page_settings', 'a:0:{}'),
(7628, 653, '_elementor_edit_mode', 'builder'),
(7629, 653, '_elementor_template_type', 'wp-page'),
(7630, 653, '_elementor_version', '4.1.4'),
(7631, 653, '_elementor_pro_version', '4.1.2'),
(7632, 653, '_elementor_global_class_usage_indexed', '1'),
(7633, 653, '_elementor_global_class_usage_indexed_preview', '1'),
(7634, 653, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7635, 653, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7920, 676, '_wp_page_template', 'elementor_header_footer'),
(7894, 674, '_wp_page_template', 'elementor_header_footer'),
(7895, 674, '_elementor_edit_mode', 'builder'),
(7896, 674, '_elementor_template_type', 'wp-page'),
(7897, 674, '_elementor_version', '4.1.4'),
(7898, 674, '_elementor_pro_version', '4.1.2'),
(7899, 674, '_elementor_global_class_usage_indexed', '1'),
(7900, 674, '_elementor_global_class_usage_indexed_preview', '1'),
(7901, 674, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7902, 674, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9160, 782, '_wp_page_template', 'default'),
(9134, 780, '_wp_page_template', 'default'),
(9136, 780, '_elementor_global_class_usage_indexed', '1'),
(9137, 780, '_elementor_edit_mode', 'builder'),
(9138, 780, '_elementor_template_type', 'wp-page'),
(9139, 780, '_elementor_version', '4.1.4'),
(9140, 780, '_elementor_pro_version', '4.1.2'),
(9141, 780, '_elementor_global_class_usage_indexed_preview', '1'),
(9142, 780, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9143, 780, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgent-care-real-a.jpg\",\"id\":768,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9094, 775, '_wp_attached_file', '2026/07/urgen-care-ab.jpg'),
(9095, 775, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/07/urgen-care-ab.jpg\";s:8:\"filesize\";i:136684;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"urgen-care-ab-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14838;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"urgen-care-ab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6424;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"urgen-care-ab-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58756;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(10990, 922, '_wp_page_template', 'default'),
(7655, 654, '_elementor_page_settings', 'a:0:{}'),
(7658, 655, '_wp_page_template', 'default'),
(7660, 655, '_elementor_global_class_usage_indexed', '1'),
(7661, 655, '_elementor_edit_mode', 'builder'),
(7662, 655, '_elementor_template_type', 'wp-page'),
(7663, 655, '_elementor_version', '4.1.4'),
(7664, 655, '_elementor_pro_version', '4.1.2'),
(7665, 655, '_elementor_global_class_usage_indexed_preview', '1'),
(7666, 655, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7667, 655, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7668, 655, '_elementor_page_settings', 'a:0:{}'),
(7673, 656, '_elementor_global_class_usage_indexed', '1'),
(7674, 656, '_elementor_edit_mode', 'builder'),
(7675, 656, '_elementor_template_type', 'wp-page'),
(7676, 656, '_elementor_version', '4.1.4'),
(7677, 656, '_elementor_pro_version', '4.1.2'),
(7678, 656, '_elementor_global_class_usage_indexed_preview', '1'),
(7679, 656, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7680, 656, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7708, 658, '_elementor_page_settings', 'a:0:{}'),
(7713, 659, '_elementor_global_class_usage_indexed', '1'),
(7714, 659, '_elementor_edit_mode', 'builder'),
(7715, 659, '_elementor_template_type', 'wp-page'),
(7716, 659, '_elementor_version', '4.1.4'),
(7717, 659, '_elementor_pro_version', '4.1.2'),
(7718, 659, '_elementor_global_class_usage_indexed_preview', '1'),
(7719, 659, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7720, 659, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7856, 670, '_wp_page_template', 'default'),
(7858, 670, '_elementor_global_class_usage_indexed', '1'),
(7859, 670, '_elementor_edit_mode', 'builder'),
(7860, 670, '_elementor_template_type', 'wp-page'),
(7861, 670, '_elementor_version', '4.1.4'),
(7862, 670, '_elementor_pro_version', '4.1.2'),
(7863, 670, '_elementor_global_class_usage_indexed_preview', '1'),
(7864, 670, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7865, 670, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7728, 660, '_wp_attached_file', '2026/07/Weight-Optimization-mid.webp'),
(7729, 660, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:36:\"2026/07/Weight-Optimization-mid.webp\";s:8:\"filesize\";i:117508;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Weight-Optimization-mid-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8910;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Weight-Optimization-mid-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4368;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Weight-Optimization-mid-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33750;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(7740, 661, '_elementor_page_settings', 'a:0:{}'),
(7743, 662, '_wp_page_template', 'elementor_header_footer'),
(7744, 662, '_elementor_edit_mode', 'builder'),
(7745, 662, '_elementor_template_type', 'wp-page'),
(7746, 662, '_elementor_version', '4.1.4'),
(7747, 662, '_elementor_pro_version', '4.1.2'),
(7748, 662, '_elementor_global_class_usage_indexed', '1'),
(7749, 662, '_elementor_global_class_usage_indexed_preview', '1'),
(7750, 662, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7751, 662, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7753, 662, '_elementor_page_settings', 'a:0:{}'),
(7757, 663, '_elementor_edit_mode', 'builder'),
(7758, 663, '_elementor_template_type', 'wp-page'),
(7759, 663, '_elementor_version', '4.1.4'),
(7760, 663, '_elementor_pro_version', '4.1.2'),
(7761, 663, '_elementor_global_class_usage_indexed', '1'),
(7762, 663, '_elementor_global_class_usage_indexed_preview', '1'),
(7763, 663, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7764, 663, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8135, 691, '_wp_page_template', 'elementor_header_footer'),
(8109, 689, '_wp_page_template', 'elementor_header_footer'),
(8110, 689, '_elementor_edit_mode', 'builder'),
(8111, 689, '_elementor_template_type', 'wp-page'),
(8112, 689, '_elementor_version', '4.1.4'),
(8113, 689, '_elementor_pro_version', '4.1.2'),
(8114, 689, '_elementor_global_class_usage_indexed', '1'),
(8115, 689, '_elementor_global_class_usage_indexed_preview', '1'),
(8116, 689, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8117, 689, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8466, 724, '_wp_page_template', 'default'),
(8468, 724, '_elementor_global_class_usage_indexed', '1'),
(8469, 724, '_elementor_edit_mode', 'builder'),
(8470, 724, '_elementor_template_type', 'wp-page'),
(8471, 724, '_elementor_version', '4.1.4'),
(8472, 724, '_elementor_pro_version', '4.1.2'),
(8473, 724, '_elementor_global_class_usage_indexed_preview', '1'),
(8474, 724, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8475, 724, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9064, 772, '_elementor_page_settings', 'a:0:{}'),
(9067, 773, '_wp_page_template', 'default'),
(9069, 773, '_elementor_global_class_usage_indexed', '1'),
(9070, 773, '_elementor_edit_mode', 'builder'),
(9071, 773, '_elementor_template_type', 'wp-page'),
(9072, 773, '_elementor_version', '4.1.4'),
(9073, 773, '_elementor_pro_version', '4.1.2'),
(9074, 773, '_elementor_global_class_usage_indexed_preview', '1'),
(9075, 773, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9076, 773, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7784, 664, '_elementor_page_settings', 'a:0:{}'),
(7787, 665, '_wp_page_template', 'default'),
(7789, 665, '_elementor_global_class_usage_indexed', '1'),
(7790, 665, '_elementor_edit_mode', 'builder'),
(7791, 665, '_elementor_template_type', 'wp-page'),
(7792, 665, '_elementor_version', '4.1.4'),
(7793, 665, '_elementor_pro_version', '4.1.2'),
(7794, 665, '_elementor_global_class_usage_indexed_preview', '1'),
(7795, 665, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7796, 665, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7797, 665, '_elementor_page_settings', 'a:0:{}'),
(7802, 666, '_elementor_global_class_usage_indexed', '1'),
(7803, 666, '_elementor_edit_mode', 'builder'),
(7804, 666, '_elementor_template_type', 'wp-page'),
(7805, 666, '_elementor_version', '4.1.4'),
(7806, 666, '_elementor_pro_version', '4.1.2'),
(7807, 666, '_elementor_global_class_usage_indexed_preview', '1'),
(7808, 666, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7809, 666, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8912, 761, '_wp_page_template', 'default'),
(8886, 759, '_wp_page_template', 'default'),
(8888, 759, '_elementor_global_class_usage_indexed', '1'),
(8889, 759, '_elementor_edit_mode', 'builder'),
(8890, 759, '_elementor_template_type', 'wp-page'),
(8891, 759, '_elementor_version', '4.1.4'),
(8892, 759, '_elementor_pro_version', '4.1.2'),
(8893, 759, '_elementor_global_class_usage_indexed_preview', '1'),
(8894, 759, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8895, 759, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7826, 667, '_elementor_page_settings', 'a:0:{}'),
(7829, 668, '_wp_page_template', 'default'),
(7831, 668, '_elementor_global_class_usage_indexed', '1'),
(7832, 668, '_elementor_edit_mode', 'builder'),
(7833, 668, '_elementor_template_type', 'wp-page'),
(7834, 668, '_elementor_version', '4.1.4'),
(7835, 668, '_elementor_pro_version', '4.1.2'),
(7836, 668, '_elementor_global_class_usage_indexed_preview', '1'),
(7837, 668, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7838, 668, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/weight-loss-ab.webp\",\"id\":650,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7839, 668, '_elementor_page_settings', 'a:0:{}'),
(7844, 669, '_elementor_global_class_usage_indexed', '1'),
(7845, 669, '_elementor_edit_mode', 'builder'),
(7846, 669, '_elementor_template_type', 'wp-page'),
(7847, 669, '_elementor_version', '4.1.4'),
(7848, 669, '_elementor_pro_version', '4.1.2'),
(7849, 669, '_elementor_global_class_usage_indexed_preview', '1'),
(7850, 669, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7851, 669, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7866, 670, '_elementor_page_settings', 'a:0:{}'),
(7867, 671, '_wp_page_template', 'default'),
(7869, 671, '_elementor_global_class_usage_indexed', '1');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7870, 671, '_elementor_edit_mode', 'builder'),
(7871, 671, '_elementor_template_type', 'wp-page'),
(7872, 671, '_elementor_version', '4.1.4'),
(7873, 671, '_elementor_pro_version', '4.1.2'),
(7874, 671, '_elementor_global_class_usage_indexed_preview', '1'),
(7875, 671, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7876, 671, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7877, 671, '_elementor_page_settings', 'a:0:{}'),
(7878, 672, '_wp_page_template', 'default'),
(7880, 672, '_elementor_global_class_usage_indexed', '1'),
(7881, 672, '_elementor_edit_mode', 'builder'),
(7882, 672, '_elementor_template_type', 'wp-page'),
(7883, 672, '_elementor_version', '4.1.4'),
(7884, 672, '_elementor_pro_version', '4.1.2'),
(7885, 672, '_elementor_global_class_usage_indexed_preview', '1'),
(7886, 672, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7887, 672, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10005, 850, '_wp_page_template', 'default'),
(10007, 850, '_elementor_global_class_usage_indexed', '1'),
(10008, 850, '_elementor_edit_mode', 'builder'),
(10009, 850, '_elementor_template_type', 'wp-page'),
(10010, 850, '_elementor_version', '4.1.4'),
(10011, 850, '_elementor_pro_version', '4.1.2'),
(10012, 850, '_elementor_global_class_usage_indexed_preview', '1'),
(10013, 850, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10014, 850, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10576, 893, '_wp_page_template', 'default'),
(10578, 893, '_elementor_global_class_usage_indexed', '1'),
(10579, 893, '_elementor_edit_mode', 'builder'),
(10580, 893, '_elementor_template_type', 'wp-page'),
(10581, 893, '_elementor_version', '4.1.4'),
(10582, 893, '_elementor_pro_version', '4.1.2'),
(10583, 893, '_elementor_global_class_usage_indexed_preview', '1'),
(10584, 893, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10585, 893, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $99\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d5be8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(7892, 673, '_wp_attached_file', '2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg'),
(7893, 673, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1165;s:6:\"height\";i:1350;s:4:\"file\";s:51:\"2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\";s:8:\"filesize\";i:494559;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"EVERWELL-LONGEVITY-WELLNESS-banner-main-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19406;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"EVERWELL-LONGEVITY-WELLNESS-banner-main-884x1024.jpg\";s:5:\"width\";i:884;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156611;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"EVERWELL-LONGEVITY-WELLNESS-banner-main-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7363;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"EVERWELL-LONGEVITY-WELLNESS-banner-main-768x890.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:890;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121600;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(7904, 674, '_elementor_page_settings', 'a:0:{}'),
(7907, 675, '_wp_page_template', 'elementor_header_footer'),
(7908, 675, '_elementor_edit_mode', 'builder'),
(7909, 675, '_elementor_template_type', 'wp-page'),
(7910, 675, '_elementor_version', '4.1.4'),
(7911, 675, '_elementor_pro_version', '4.1.2'),
(7912, 675, '_elementor_global_class_usage_indexed', '1'),
(7913, 675, '_elementor_global_class_usage_indexed_preview', '1'),
(7914, 675, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7915, 675, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-banner-ab-1.jpg\",\"id\":488,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7917, 675, '_elementor_page_settings', 'a:0:{}'),
(7921, 676, '_elementor_edit_mode', 'builder'),
(7922, 676, '_elementor_template_type', 'wp-page'),
(7923, 676, '_elementor_version', '4.1.4'),
(7924, 676, '_elementor_pro_version', '4.1.2'),
(7925, 676, '_elementor_global_class_usage_indexed', '1'),
(7926, 676, '_elementor_global_class_usage_indexed_preview', '1'),
(7927, 676, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7928, 676, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8181, 695, '_wp_page_template', 'elementor_header_footer'),
(8155, 693, '_wp_page_template', 'elementor_header_footer'),
(8156, 693, '_elementor_edit_mode', 'builder'),
(8157, 693, '_elementor_template_type', 'wp-page'),
(8158, 693, '_elementor_version', '4.1.4'),
(8159, 693, '_elementor_pro_version', '4.1.2'),
(8160, 693, '_elementor_global_class_usage_indexed', '1'),
(8161, 693, '_elementor_global_class_usage_indexed_preview', '1'),
(8162, 693, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8163, 693, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7946, 677, '_elementor_page_settings', 'a:0:{}'),
(7949, 678, '_wp_page_template', 'default'),
(7951, 678, '_elementor_global_class_usage_indexed', '1'),
(7952, 678, '_elementor_edit_mode', 'builder'),
(7953, 678, '_elementor_template_type', 'wp-page'),
(7954, 678, '_elementor_version', '4.1.4'),
(7955, 678, '_elementor_pro_version', '4.1.2'),
(7956, 678, '_elementor_global_class_usage_indexed_preview', '1'),
(7957, 678, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7958, 678, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7959, 678, '_elementor_page_settings', 'a:0:{}'),
(7962, 679, '_wp_page_template', 'default'),
(7964, 679, '_elementor_global_class_usage_indexed', '1'),
(7965, 679, '_elementor_edit_mode', 'builder'),
(7966, 679, '_elementor_template_type', 'wp-page'),
(7967, 679, '_elementor_version', '4.1.4'),
(7968, 679, '_elementor_pro_version', '4.1.2'),
(7969, 679, '_elementor_global_class_usage_indexed_preview', '1'),
(7970, 679, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(7971, 679, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7986, 680, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7989, 680, '_elementor_screenshot_failed', '2026-07-06 10:46:41'),
(8002, 681, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9969, 848, '_elementor_edit_mode', 'builder'),
(9970, 848, '_elementor_template_type', 'footer'),
(9971, 848, '_elementor_version', '4.1.4'),
(9972, 848, '_elementor_pro_version', '4.1.2'),
(9973, 848, '_elementor_global_class_usage_indexed', '1'),
(9974, 848, '_elementor_global_class_usage_indexed_preview', '1'),
(9975, 848, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9976, 848, '_wp_page_template', 'default'),
(9977, 848, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"dcf9c85\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5e370fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Areas We Serve\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7ce9cc\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f76a5d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Serving the Shreveport-Bossier, LA and Homer, LA area\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(8015, 682, '_elementor_page_settings', 'a:0:{}'),
(8018, 683, '_wp_page_template', 'elementor_header_footer'),
(8020, 683, '_elementor_global_class_usage_indexed', '1'),
(8021, 683, '_elementor_edit_mode', 'builder'),
(8022, 683, '_elementor_template_type', 'wp-page'),
(8023, 683, '_elementor_version', '4.1.4'),
(8024, 683, '_elementor_pro_version', '4.1.2'),
(8025, 683, '_elementor_global_class_usage_indexed_preview', '1'),
(8026, 683, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8027, 683, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1c7da09\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.481963,-93.706498&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"info@everwell.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@everwell.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8028, 683, '_elementor_page_settings', 'a:0:{}'),
(8031, 684, '_wp_page_template', 'elementor_header_footer'),
(8033, 684, '_elementor_global_class_usage_indexed', '1'),
(8034, 684, '_elementor_edit_mode', 'builder'),
(8035, 684, '_elementor_template_type', 'wp-page'),
(8036, 684, '_elementor_version', '4.1.4'),
(8037, 684, '_elementor_pro_version', '4.1.2'),
(8038, 684, '_elementor_global_class_usage_indexed_preview', '1'),
(8039, 684, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8040, 684, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9492, 809, '_wp_page_template', 'elementor_header_footer'),
(9466, 807, '_wp_page_template', 'elementor_header_footer'),
(9468, 807, '_elementor_global_class_usage_indexed', '1'),
(9469, 807, '_elementor_edit_mode', 'builder'),
(9470, 807, '_elementor_template_type', 'wp-page'),
(9471, 807, '_elementor_version', '4.1.4'),
(9472, 807, '_elementor_pro_version', '4.1.2'),
(9473, 807, '_elementor_global_class_usage_indexed_preview', '1'),
(9474, 807, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9475, 807, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9987, 849, '_elementor_edit_mode', 'builder'),
(9988, 849, '_elementor_template_type', 'footer'),
(9989, 849, '_elementor_version', '4.1.4'),
(9990, 849, '_elementor_pro_version', '4.1.2'),
(9991, 849, '_elementor_global_class_usage_indexed', '1'),
(9992, 849, '_elementor_global_class_usage_indexed_preview', '1'),
(9993, 849, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9994, 849, '_wp_page_template', 'default'),
(9995, 849, '_elementor_data', '[{\"id\":\"4939cc80\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#122627\"},\"elements\":[{\"id\":\"63262ba0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"6a5ee675\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0b5a82d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f46ee2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"13f513e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5acd58f7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43494c6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3033214a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45a813e3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"13f9ced0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"dcf9c85\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5e370fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Areas We Serve\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d7ce9cc\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f76a5d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Serving the Shreveport-Bossier, LA and Homer, LA area\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"icon_color\":\"#f7f1ec\",\"icon_color_hover\":\"#bd9066\",\"text_color\":\"#f7f1ec\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"34377615\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#0F2122\"},\"elements\":[{\"id\":\"4a17bf7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(8060, 685, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8063, 685, '_elementor_screenshot_failed', '2026-07-05 12:53:25'),
(8078, 686, '_elementor_page_settings', 'a:0:{}'),
(8081, 687, '_wp_page_template', 'elementor_header_footer'),
(8083, 687, '_elementor_global_class_usage_indexed', '1'),
(8084, 687, '_elementor_edit_mode', 'builder'),
(8085, 687, '_elementor_template_type', 'wp-page'),
(8086, 687, '_elementor_version', '4.1.4'),
(8087, 687, '_elementor_pro_version', '4.1.2'),
(8088, 687, '_elementor_global_class_usage_indexed_preview', '1'),
(8089, 687, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8090, 687, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8091, 687, '_elementor_page_settings', 'a:0:{}'),
(8094, 688, '_wp_page_template', 'elementor_header_footer'),
(8096, 688, '_elementor_global_class_usage_indexed', '1'),
(8097, 688, '_elementor_edit_mode', 'builder'),
(8098, 688, '_elementor_template_type', 'wp-page'),
(8099, 688, '_elementor_version', '4.1.4'),
(8100, 688, '_elementor_pro_version', '4.1.2'),
(8101, 688, '_elementor_global_class_usage_indexed_preview', '1'),
(8102, 688, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8103, 688, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10704, 902, '_elementor_source', 'post'),
(10705, 902, '_elementor_edit_mode', 'builder'),
(10706, 902, '_elementor_template_type', 'header'),
(10707, 902, '_elementor_version', '4.1.4'),
(10708, 902, '_elementor_pro_version', '4.1.2'),
(10709, 902, '_elementor_global_class_usage_indexed', '1'),
(10710, 902, '_elementor_global_class_usage_indexed_preview', '1'),
(10711, 902, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10712, 902, '_wp_page_template', 'default'),
(10713, 902, '_elementor_data', '[{\"id\":\"4477db87\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"7c48ff4c\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f52a413\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\",\"icon_align\":\"start\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"267b5b67\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"193f9eb3\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"icon_align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_align_mobile_extra\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"575f8b73\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5aad73e0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]}},\"elements\":[{\"id\":\"38b5d957\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":53,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Everwell-Longevity-Wellness-logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":144,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":118,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394eed43\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"a3c77d0\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#393939\",\"color_menu_item_hover\":\"#294c4e\",\"color_menu_item_active\":\"#294c4e\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#bd9066\",\"color_dropdown_item_hover\":\"#FFFFFF\",\"background_color_dropdown_item_hover\":\"#294c4e\",\"color_dropdown_item_active\":\"#FFFFFF\",\"background_color_dropdown_item_active\":\"#294c4e\",\"toggle_color\":\"#393939\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#393939\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#393939\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#393939\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_bg_hover\":\"#bd9066\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor3\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor3\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#CE9F72\",\"close_icon_color_hover\":\"#393939\",\"dropdown_box_shadow_box_shadow_type\":\"yes\",\"dropdown_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(255, 255, 255, 0.10196078431372549)\"}},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"9726847\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"77baec9a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":202,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":389,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/breadcrumb-mental.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.9,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"min_height_mobile\":{\"unit\":\"px\",\"size\":132,\"sizes\":[]}},\"elements\":[{\"id\":\"2809bfb4\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(8119, 689, '_elementor_page_settings', 'a:0:{}'),
(8122, 690, '_wp_page_template', 'elementor_header_footer'),
(8123, 690, '_elementor_edit_mode', 'builder'),
(8124, 690, '_elementor_template_type', 'wp-page'),
(8125, 690, '_elementor_version', '4.1.4'),
(8126, 690, '_elementor_pro_version', '4.1.2'),
(8127, 690, '_elementor_global_class_usage_indexed', '1'),
(8128, 690, '_elementor_global_class_usage_indexed_preview', '1'),
(8129, 690, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8130, 690, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwell.com\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8132, 690, '_elementor_page_settings', 'a:0:{}'),
(8136, 691, '_elementor_edit_mode', 'builder'),
(8137, 691, '_elementor_template_type', 'wp-page'),
(8138, 691, '_elementor_version', '4.1.4'),
(8139, 691, '_elementor_pro_version', '4.1.2'),
(8140, 691, '_elementor_global_class_usage_indexed', '1'),
(8141, 691, '_elementor_global_class_usage_indexed_preview', '1'),
(8142, 691, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8143, 691, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8219, 699, '_wp_page_template', 'elementor_header_footer'),
(8197, 697, '_wp_page_template', 'elementor_header_footer'),
(8198, 697, '_elementor_edit_mode', 'builder'),
(8199, 697, '_elementor_template_type', 'wp-page'),
(8200, 697, '_elementor_version', '4.1.4'),
(8201, 697, '_elementor_pro_version', '4.1.2'),
(8202, 697, '_elementor_global_class_usage_indexed', '1'),
(8203, 697, '_elementor_global_class_usage_indexed_preview', '1'),
(8204, 697, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8205, 697, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-ab-1.webp\",\"id\":692,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8195, 696, '_wp_attached_file', '2026/07/WELLNESS-main.jpg'),
(8196, 696, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/07/WELLNESS-main.jpg\";s:8:\"filesize\";i:213246;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"WELLNESS-main-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17114;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"WELLNESS-main-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"WELLNESS-main-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71900;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8970, 765, '_wp_page_template', 'default'),
(8972, 765, '_elementor_global_class_usage_indexed', '1'),
(8973, 765, '_elementor_edit_mode', 'builder'),
(8974, 765, '_elementor_template_type', 'wp-page'),
(8975, 765, '_elementor_version', '4.1.4'),
(8976, 765, '_elementor_pro_version', '4.1.2'),
(8977, 765, '_elementor_global_class_usage_indexed_preview', '1'),
(8978, 765, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8979, 765, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10491, 887, '_wp_page_template', 'default'),
(10322, 874, '_elementor_page_settings', 'a:0:{}'),
(10325, 875, '_wp_page_template', 'elementor_header_footer'),
(10327, 875, '_elementor_global_class_usage_indexed', '1'),
(10328, 875, '_elementor_edit_mode', 'builder'),
(10329, 875, '_elementor_template_type', 'wp-page'),
(10330, 875, '_elementor_version', '4.1.4'),
(10331, 875, '_elementor_pro_version', '4.1.2'),
(10332, 875, '_elementor_global_class_usage_indexed_preview', '1'),
(10333, 875, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10334, 875, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8165, 693, '_elementor_page_settings', 'a:0:{}'),
(8168, 694, '_wp_page_template', 'elementor_header_footer'),
(8169, 694, '_elementor_edit_mode', 'builder'),
(8170, 694, '_elementor_template_type', 'wp-page'),
(8171, 694, '_elementor_version', '4.1.4'),
(8172, 694, '_elementor_pro_version', '4.1.2'),
(8173, 694, '_elementor_global_class_usage_indexed', '1'),
(8174, 694, '_elementor_global_class_usage_indexed_preview', '1'),
(8175, 694, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8176, 694, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8178, 694, '_elementor_page_settings', 'a:0:{}'),
(8182, 695, '_elementor_edit_mode', 'builder'),
(8183, 695, '_elementor_template_type', 'wp-page'),
(8184, 695, '_elementor_version', '4.1.4'),
(8185, 695, '_elementor_pro_version', '4.1.2'),
(8186, 695, '_elementor_global_class_usage_indexed', '1'),
(8187, 695, '_elementor_global_class_usage_indexed_preview', '1'),
(8188, 695, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8189, 695, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-ab-1.webp\",\"id\":692,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8207, 697, '_elementor_page_settings', 'a:0:{}'),
(8208, 698, '_wp_page_template', 'elementor_header_footer'),
(8209, 698, '_elementor_edit_mode', 'builder'),
(8210, 698, '_elementor_template_type', 'wp-page'),
(8211, 698, '_elementor_version', '4.1.4'),
(8212, 698, '_elementor_pro_version', '4.1.2'),
(8213, 698, '_elementor_global_class_usage_indexed', '1'),
(8214, 698, '_elementor_global_class_usage_indexed_preview', '1'),
(8215, 698, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8216, 698, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-ab-1.webp\",\"id\":692,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8218, 698, '_elementor_page_settings', 'a:0:{}'),
(8220, 699, '_elementor_edit_mode', 'builder'),
(8221, 699, '_elementor_template_type', 'wp-page'),
(8222, 699, '_elementor_version', '4.1.4'),
(8223, 699, '_elementor_pro_version', '4.1.2'),
(8224, 699, '_elementor_global_class_usage_indexed', '1'),
(8225, 699, '_elementor_global_class_usage_indexed_preview', '1'),
(8226, 699, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8227, 699, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-main.jpg\",\"id\":696,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8255, 703, '_wp_page_template', 'elementor_header_footer'),
(8233, 701, '_wp_page_template', 'elementor_header_footer'),
(8234, 701, '_elementor_edit_mode', 'builder'),
(8235, 701, '_elementor_template_type', 'wp-page'),
(8236, 701, '_elementor_version', '4.1.4'),
(8237, 701, '_elementor_pro_version', '4.1.2'),
(8238, 701, '_elementor_global_class_usage_indexed', '1'),
(8239, 701, '_elementor_global_class_usage_indexed_preview', '1'),
(8240, 701, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8241, 701, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-main.jpg\",\"id\":696,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8231, 700, '_wp_attached_file', '2026/07/mental-health-ab.jpg'),
(8232, 700, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2026/07/mental-health-ab.jpg\";s:8:\"filesize\";i:237349;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"mental-health-ab-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20965;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"mental-health-ab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7780;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"mental-health-ab-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87625;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8243, 701, '_elementor_page_settings', 'a:0:{}'),
(8244, 702, '_wp_page_template', 'elementor_header_footer'),
(8245, 702, '_elementor_edit_mode', 'builder'),
(8246, 702, '_elementor_template_type', 'wp-page'),
(8247, 702, '_elementor_version', '4.1.4'),
(8248, 702, '_elementor_pro_version', '4.1.2'),
(8249, 702, '_elementor_global_class_usage_indexed', '1'),
(8250, 702, '_elementor_global_class_usage_indexed_preview', '1'),
(8251, 702, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8252, 702, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-main.jpg\",\"id\":696,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8254, 702, '_elementor_page_settings', 'a:0:{}'),
(8256, 703, '_elementor_edit_mode', 'builder'),
(8257, 703, '_elementor_template_type', 'wp-page'),
(8258, 703, '_elementor_version', '4.1.4'),
(8259, 703, '_elementor_pro_version', '4.1.2'),
(8260, 703, '_elementor_global_class_usage_indexed', '1'),
(8261, 703, '_elementor_global_class_usage_indexed_preview', '1'),
(8262, 703, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8263, 703, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-main.jpg\",\"id\":696,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8291, 707, '_wp_page_template', 'elementor_header_footer'),
(8269, 705, '_wp_page_template', 'elementor_header_footer'),
(8270, 705, '_elementor_edit_mode', 'builder'),
(8271, 705, '_elementor_template_type', 'wp-page'),
(8272, 705, '_elementor_version', '4.1.4'),
(8273, 705, '_elementor_pro_version', '4.1.2'),
(8274, 705, '_elementor_global_class_usage_indexed', '1'),
(8275, 705, '_elementor_global_class_usage_indexed_preview', '1'),
(8276, 705, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8277, 705, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-main.jpg\",\"id\":696,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8267, 704, '_wp_attached_file', '2026/07/wellness-good.jpg'),
(8268, 704, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2026/07/wellness-good.jpg\";s:8:\"filesize\";i:281465;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"wellness-good-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"wellness-good-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9801;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"wellness-good-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109298;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8279, 705, '_elementor_page_settings', 'a:0:{}'),
(8280, 706, '_wp_page_template', 'elementor_header_footer'),
(8281, 706, '_elementor_edit_mode', 'builder'),
(8282, 706, '_elementor_template_type', 'wp-page'),
(8283, 706, '_elementor_version', '4.1.4'),
(8284, 706, '_elementor_pro_version', '4.1.2'),
(8285, 706, '_elementor_global_class_usage_indexed', '1'),
(8286, 706, '_elementor_global_class_usage_indexed_preview', '1'),
(8287, 706, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8288, 706, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/WELLNESS-main.jpg\",\"id\":696,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8290, 706, '_elementor_page_settings', 'a:0:{}'),
(8292, 707, '_elementor_edit_mode', 'builder'),
(8293, 707, '_elementor_template_type', 'wp-page'),
(8294, 707, '_elementor_version', '4.1.4'),
(8295, 707, '_elementor_pro_version', '4.1.2'),
(8296, 707, '_elementor_global_class_usage_indexed', '1'),
(8297, 707, '_elementor_global_class_usage_indexed_preview', '1'),
(8298, 707, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8299, 707, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8327, 711, '_wp_page_template', 'elementor_header_footer'),
(8305, 709, '_wp_page_template', 'elementor_header_footer'),
(8306, 709, '_elementor_edit_mode', 'builder'),
(8307, 709, '_elementor_template_type', 'wp-page'),
(8308, 709, '_elementor_version', '4.1.4'),
(8309, 709, '_elementor_pro_version', '4.1.2'),
(8310, 709, '_elementor_global_class_usage_indexed', '1'),
(8311, 709, '_elementor_global_class_usage_indexed_preview', '1'),
(8312, 709, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8313, 709, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8303, 708, '_wp_attached_file', '2026/07/primary-care.jpg'),
(8304, 708, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2026/07/primary-care.jpg\";s:8:\"filesize\";i:65950;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"primary-care-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14015;}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:7565;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8315, 709, '_elementor_page_settings', 'a:0:{}'),
(8316, 710, '_wp_page_template', 'elementor_header_footer'),
(8317, 710, '_elementor_edit_mode', 'builder'),
(8318, 710, '_elementor_template_type', 'wp-page'),
(8319, 710, '_elementor_version', '4.1.4'),
(8320, 710, '_elementor_pro_version', '4.1.2'),
(8321, 710, '_elementor_global_class_usage_indexed', '1'),
(8322, 710, '_elementor_global_class_usage_indexed_preview', '1'),
(8323, 710, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8324, 710, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/prymary.jpg\",\"id\":112,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8326, 710, '_elementor_page_settings', 'a:0:{}'),
(8328, 711, '_elementor_edit_mode', 'builder'),
(8329, 711, '_elementor_template_type', 'wp-page'),
(8330, 711, '_elementor_version', '4.1.4'),
(8331, 711, '_elementor_pro_version', '4.1.2'),
(8332, 711, '_elementor_global_class_usage_indexed', '1'),
(8333, 711, '_elementor_global_class_usage_indexed_preview', '1'),
(8334, 711, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8335, 711, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8343, 713, '_wp_page_template', 'elementor_header_footer'),
(8344, 713, '_elementor_edit_mode', 'builder'),
(8345, 713, '_elementor_template_type', 'wp-page'),
(8346, 713, '_elementor_version', '4.1.4'),
(8347, 713, '_elementor_pro_version', '4.1.2'),
(8348, 713, '_elementor_global_class_usage_indexed', '1'),
(8349, 713, '_elementor_global_class_usage_indexed_preview', '1'),
(8350, 713, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8351, 713, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8552, 730, '_wp_page_template', 'elementor_header_footer'),
(8553, 730, '_elementor_edit_mode', 'builder'),
(8554, 730, '_elementor_template_type', 'wp-page'),
(8555, 730, '_elementor_version', '4.1.4'),
(8556, 730, '_elementor_pro_version', '4.1.2'),
(8557, 730, '_elementor_global_class_usage_indexed', '1'),
(8558, 730, '_elementor_global_class_usage_indexed_preview', '1'),
(8559, 730, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8560, 730, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10751, 905, '_elementor_global_class_usage_indexed', '1'),
(10723, 903, '_wp_page_template', 'elementor_header_footer'),
(10725, 903, '_elementor_global_class_usage_indexed', '1'),
(10726, 903, '_elementor_edit_mode', 'builder'),
(10727, 903, '_elementor_template_type', 'wp-page'),
(10728, 903, '_elementor_version', '4.1.4'),
(10729, 903, '_elementor_pro_version', '4.1.2'),
(10730, 903, '_elementor_global_class_usage_indexed_preview', '1'),
(10731, 903, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10732, 903, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9953, 847, '_wp_page_template', 'elementor_header_footer'),
(9927, 845, '_wp_page_template', 'elementor_header_footer'),
(9929, 845, '_elementor_global_class_usage_indexed', '1'),
(9930, 845, '_elementor_edit_mode', 'builder'),
(9931, 845, '_elementor_template_type', 'wp-page'),
(9932, 845, '_elementor_version', '4.1.4'),
(9933, 845, '_elementor_pro_version', '4.1.2'),
(9934, 845, '_elementor_global_class_usage_indexed_preview', '1'),
(9935, 845, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9936, 845, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8396, 716, '_elementor_page_settings', 'a:0:{}'),
(8399, 717, '_wp_page_template', 'elementor_header_footer'),
(8401, 717, '_elementor_global_class_usage_indexed', '1'),
(8402, 717, '_elementor_edit_mode', 'builder'),
(8403, 717, '_elementor_template_type', 'wp-page'),
(8404, 717, '_elementor_version', '4.1.4'),
(8405, 717, '_elementor_pro_version', '4.1.2'),
(8406, 717, '_elementor_global_class_usage_indexed_preview', '1'),
(8407, 717, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8408, 717, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-photo.jpg\",\"id\":138,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-mental-.jpg\",\"id\":103,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8409, 717, '_elementor_page_settings', 'a:0:{}'),
(8414, 718, '_elementor_global_class_usage_indexed', '1'),
(8415, 718, '_elementor_edit_mode', 'builder'),
(8416, 718, '_elementor_template_type', 'wp-page'),
(8417, 718, '_elementor_version', '4.1.4'),
(8418, 718, '_elementor_pro_version', '4.1.2'),
(8419, 718, '_elementor_global_class_usage_indexed_preview', '1'),
(8420, 718, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8421, 718, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8341, 712, '_wp_attached_file', '2026/07/Schedule-a-Consultation-a.jpg'),
(8342, 712, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:37:\"2026/07/Schedule-a-Consultation-a.jpg\";s:8:\"filesize\";i:96570;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Schedule-a-Consultation-a-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15449;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Schedule-a-Consultation-a-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Schedule-a-Consultation-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7304;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Schedule-a-Consultation-a-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108873;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8353, 713, '_elementor_page_settings', 'a:0:{}'),
(8356, 714, '_wp_page_template', 'elementor_header_footer'),
(8357, 714, '_elementor_edit_mode', 'builder'),
(8358, 714, '_elementor_template_type', 'wp-page'),
(8359, 714, '_elementor_version', '4.1.4'),
(8360, 714, '_elementor_pro_version', '4.1.2'),
(8361, 714, '_elementor_global_class_usage_indexed', '1'),
(8362, 714, '_elementor_global_class_usage_indexed_preview', '1'),
(8363, 714, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8364, 714, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":323,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/appointment-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8366, 714, '_elementor_page_settings', 'a:0:{}'),
(8369, 715, '_wp_page_template', 'elementor_header_footer'),
(8370, 715, '_elementor_edit_mode', 'builder'),
(8371, 715, '_elementor_template_type', 'wp-page'),
(8372, 715, '_elementor_version', '4.1.4'),
(8373, 715, '_elementor_pro_version', '4.1.2'),
(8374, 715, '_elementor_global_class_usage_indexed', '1'),
(8375, 715, '_elementor_global_class_usage_indexed_preview', '1'),
(8376, 715, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8377, 715, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8438, 720, '_elementor_page_settings', 'a:0:{}'),
(8439, 721, '_wp_page_template', 'elementor_header_footer'),
(8441, 721, '_elementor_global_class_usage_indexed', '1'),
(8442, 721, '_elementor_edit_mode', 'builder'),
(8443, 721, '_elementor_template_type', 'wp-page'),
(8444, 721, '_elementor_version', '4.1.4'),
(8445, 721, '_elementor_pro_version', '4.1.2'),
(8446, 721, '_elementor_global_class_usage_indexed_preview', '1'),
(8447, 721, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8448, 721, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Compassionate-care-mental.jpg\",\"id\":404,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8449, 721, '_elementor_page_settings', 'a:0:{}'),
(8452, 722, '_elementor_global_class_usage_indexed', '1'),
(8453, 722, '_elementor_edit_mode', 'builder'),
(8454, 722, '_elementor_template_type', 'wp-page'),
(8455, 722, '_elementor_version', '4.1.4'),
(8456, 722, '_elementor_pro_version', '4.1.2'),
(8457, 722, '_elementor_global_class_usage_indexed_preview', '1'),
(8458, 722, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8459, 722, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9382, 801, '_wp_page_template', 'elementor_header_footer'),
(9384, 801, '_elementor_global_class_usage_indexed', '1'),
(9385, 801, '_elementor_edit_mode', 'builder'),
(9386, 801, '_elementor_template_type', 'wp-page'),
(9387, 801, '_elementor_version', '4.1.4'),
(9388, 801, '_elementor_pro_version', '4.1.2'),
(9389, 801, '_elementor_global_class_usage_indexed_preview', '1'),
(9390, 801, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9391, 801, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9868, 840, '_wp_page_template', 'elementor_header_footer'),
(9844, 838, '_wp_page_template', 'elementor_header_footer'),
(9846, 838, '_elementor_global_class_usage_indexed', '1'),
(9847, 838, '_elementor_edit_mode', 'builder'),
(9848, 838, '_elementor_template_type', 'wp-page'),
(9849, 838, '_elementor_version', '4.1.4'),
(9850, 838, '_elementor_pro_version', '4.1.2'),
(9851, 838, '_elementor_global_class_usage_indexed_preview', '1'),
(9852, 838, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9853, 838, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-10 08:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8464, 723, '_wp_attached_file', '2026/07/pegneci-ab.jpg'),
(8465, 723, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2026/07/pegneci-ab.jpg\";s:8:\"filesize\";i:361201;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"pegneci-ab-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27290;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"pegneci-ab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9144;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"pegneci-ab-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133949;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8476, 724, '_elementor_page_settings', 'a:0:{}'),
(8479, 725, '_wp_page_template', 'default'),
(8481, 725, '_elementor_global_class_usage_indexed', '1'),
(8482, 725, '_elementor_edit_mode', 'builder'),
(8483, 725, '_elementor_template_type', 'wp-page'),
(8484, 725, '_elementor_version', '4.1.4'),
(8485, 725, '_elementor_pro_version', '4.1.2'),
(8486, 725, '_elementor_global_class_usage_indexed_preview', '1'),
(8487, 725, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8488, 725, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8489, 725, '_elementor_page_settings', 'a:0:{}'),
(8494, 726, '_elementor_global_class_usage_indexed', '1'),
(8495, 726, '_elementor_edit_mode', 'builder'),
(8496, 726, '_elementor_template_type', 'wp-page'),
(8497, 726, '_elementor_version', '4.1.4'),
(8498, 726, '_elementor_pro_version', '4.1.2'),
(8499, 726, '_elementor_global_class_usage_indexed_preview', '1'),
(8500, 726, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8501, 726, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9040, 771, '_wp_page_template', 'default'),
(9014, 769, '_wp_page_template', 'default'),
(9016, 769, '_elementor_global_class_usage_indexed', '1'),
(9017, 769, '_elementor_edit_mode', 'builder'),
(9018, 769, '_elementor_template_type', 'wp-page'),
(9019, 769, '_elementor_version', '4.1.4'),
(9020, 769, '_elementor_pro_version', '4.1.2'),
(9021, 769, '_elementor_global_class_usage_indexed_preview', '1'),
(9022, 769, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9023, 769, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8518, 727, '_elementor_page_settings', 'a:0:{}'),
(8521, 728, '_wp_page_template', 'elementor_header_footer'),
(8523, 728, '_elementor_global_class_usage_indexed', '1'),
(8524, 728, '_elementor_edit_mode', 'builder'),
(8525, 728, '_elementor_template_type', 'wp-page'),
(8526, 728, '_elementor_version', '4.1.4'),
(8527, 728, '_elementor_pro_version', '4.1.2'),
(8528, 728, '_elementor_global_class_usage_indexed_preview', '1'),
(8529, 728, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8530, 728, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Birth-Control-Consultations-a.jpg\",\"id\":270,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8531, 728, '_elementor_page_settings', 'a:0:{}'),
(8536, 729, '_elementor_global_class_usage_indexed', '1'),
(8537, 729, '_elementor_edit_mode', 'builder'),
(8538, 729, '_elementor_template_type', 'wp-page'),
(8539, 729, '_elementor_version', '4.1.4'),
(8540, 729, '_elementor_pro_version', '4.1.2'),
(8541, 729, '_elementor_global_class_usage_indexed_preview', '1'),
(8542, 729, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8543, 729, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10660, 899, '_wp_page_template', 'elementor_header_footer'),
(10662, 899, '_elementor_global_class_usage_indexed', '1'),
(10663, 899, '_elementor_edit_mode', 'builder'),
(10664, 899, '_elementor_template_type', 'wp-page'),
(10665, 899, '_elementor_version', '4.1.4'),
(10666, 899, '_elementor_pro_version', '4.1.2'),
(10667, 899, '_elementor_global_class_usage_indexed_preview', '1'),
(10668, 899, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10669, 899, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8614, 735, '_wp_page_template', 'elementor_header_footer'),
(8592, 733, '_wp_page_template', 'elementor_header_footer'),
(8593, 733, '_elementor_edit_mode', 'builder'),
(8594, 733, '_elementor_template_type', 'wp-page'),
(8595, 733, '_elementor_version', '4.1.4'),
(8596, 733, '_elementor_pro_version', '4.1.2'),
(8597, 733, '_elementor_global_class_usage_indexed', '1'),
(8598, 733, '_elementor_global_class_usage_indexed_preview', '1'),
(8599, 733, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8600, 733, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8562, 730, '_elementor_page_settings', 'a:0:{}'),
(8565, 731, '_wp_page_template', 'elementor_header_footer'),
(8566, 731, '_elementor_edit_mode', 'builder'),
(8567, 731, '_elementor_template_type', 'wp-page'),
(8568, 731, '_elementor_version', '4.1.4'),
(8569, 731, '_elementor_pro_version', '4.1.2'),
(8570, 731, '_elementor_global_class_usage_indexed', '1'),
(8571, 731, '_elementor_global_class_usage_indexed_preview', '1'),
(8572, 731, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8573, 731, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8575, 731, '_elementor_page_settings', 'a:0:{}'),
(8578, 732, '_wp_page_template', 'elementor_header_footer'),
(8579, 732, '_elementor_edit_mode', 'builder'),
(8580, 732, '_elementor_template_type', 'wp-page'),
(8581, 732, '_elementor_version', '4.1.4'),
(8582, 732, '_elementor_pro_version', '4.1.2'),
(8583, 732, '_elementor_global_class_usage_indexed', '1'),
(8584, 732, '_elementor_global_class_usage_indexed_preview', '1'),
(8585, 732, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8586, 732, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8602, 733, '_elementor_page_settings', 'a:0:{}'),
(8603, 734, '_wp_page_template', 'elementor_header_footer'),
(8604, 734, '_elementor_edit_mode', 'builder'),
(8605, 734, '_elementor_template_type', 'wp-page'),
(8606, 734, '_elementor_version', '4.1.4'),
(8607, 734, '_elementor_pro_version', '4.1.2'),
(8608, 734, '_elementor_global_class_usage_indexed', '1'),
(8609, 734, '_elementor_global_class_usage_indexed_preview', '1'),
(8610, 734, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8611, 734, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8613, 734, '_elementor_page_settings', 'a:0:{}'),
(8615, 735, '_elementor_edit_mode', 'builder'),
(8616, 735, '_elementor_template_type', 'wp-page'),
(8617, 735, '_elementor_version', '4.1.4'),
(8618, 735, '_elementor_pro_version', '4.1.2'),
(8619, 735, '_elementor_global_class_usage_indexed', '1'),
(8620, 735, '_elementor_global_class_usage_indexed_preview', '1'),
(8621, 735, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8622, 735, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10837, 911, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8626, 736, '_wp_page_template', 'elementor_header_footer'),
(8627, 736, '_elementor_edit_mode', 'builder'),
(8628, 736, '_elementor_template_type', 'wp-page'),
(8629, 736, '_elementor_version', '4.1.4'),
(8630, 736, '_elementor_pro_version', '4.1.2'),
(8631, 736, '_elementor_global_class_usage_indexed', '1'),
(8632, 736, '_elementor_global_class_usage_indexed_preview', '1'),
(8633, 736, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8634, 736, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8636, 736, '_elementor_page_settings', 'a:0:{}'),
(8637, 737, '_wp_page_template', 'elementor_header_footer'),
(8638, 737, '_elementor_edit_mode', 'builder'),
(8639, 737, '_elementor_template_type', 'wp-page'),
(8640, 737, '_elementor_version', '4.1.4'),
(8641, 737, '_elementor_pro_version', '4.1.2'),
(8642, 737, '_elementor_global_class_usage_indexed', '1'),
(8643, 737, '_elementor_global_class_usage_indexed_preview', '1'),
(8644, 737, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8645, 737, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8647, 737, '_elementor_page_settings', 'a:0:{}'),
(8648, 738, '_wp_page_template', 'elementor_header_footer'),
(8649, 738, '_elementor_edit_mode', 'builder'),
(8650, 738, '_elementor_template_type', 'wp-page'),
(8651, 738, '_elementor_version', '4.1.4'),
(8652, 738, '_elementor_pro_version', '4.1.2'),
(8653, 738, '_elementor_global_class_usage_indexed', '1'),
(8654, 738, '_elementor_global_class_usage_indexed_preview', '1'),
(8655, 738, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8656, 738, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8660, 739, '_wp_page_template', 'elementor_header_footer'),
(8661, 739, '_elementor_edit_mode', 'builder'),
(8662, 739, '_elementor_template_type', 'wp-page'),
(8663, 739, '_elementor_version', '4.1.4'),
(8664, 739, '_elementor_pro_version', '4.1.2'),
(8665, 739, '_elementor_global_class_usage_indexed', '1'),
(8666, 739, '_elementor_global_class_usage_indexed_preview', '1'),
(8667, 739, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8668, 739, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8670, 739, '_elementor_page_settings', 'a:0:{}'),
(8671, 740, '_wp_page_template', 'elementor_header_footer'),
(8672, 740, '_elementor_edit_mode', 'builder'),
(8673, 740, '_elementor_template_type', 'wp-page'),
(8674, 740, '_elementor_version', '4.1.4'),
(8675, 740, '_elementor_pro_version', '4.1.2'),
(8676, 740, '_elementor_global_class_usage_indexed', '1'),
(8677, 740, '_elementor_global_class_usage_indexed_preview', '1'),
(8678, 740, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8679, 740, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8681, 740, '_elementor_page_settings', 'a:0:{}'),
(10835, 911, '_elementor_global_class_usage_indexed_preview', '1'),
(10836, 911, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8682, 741, '_wp_page_template', 'elementor_header_footer'),
(8683, 741, '_elementor_edit_mode', 'builder'),
(8684, 741, '_elementor_template_type', 'wp-page'),
(8685, 741, '_elementor_version', '4.1.4'),
(8686, 741, '_elementor_pro_version', '4.1.2'),
(8687, 741, '_elementor_global_class_usage_indexed', '1'),
(8688, 741, '_elementor_global_class_usage_indexed_preview', '1'),
(8689, 741, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8690, 741, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8716, 744, '_wp_page_template', 'elementor_header_footer'),
(8694, 742, '_wp_page_template', 'elementor_header_footer'),
(8695, 742, '_elementor_edit_mode', 'builder'),
(8696, 742, '_elementor_template_type', 'wp-page'),
(8697, 742, '_elementor_version', '4.1.4'),
(8698, 742, '_elementor_pro_version', '4.1.2'),
(8699, 742, '_elementor_global_class_usage_indexed', '1'),
(8700, 742, '_elementor_global_class_usage_indexed_preview', '1'),
(8701, 742, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8702, 742, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8704, 742, '_elementor_page_settings', 'a:0:{}'),
(8705, 743, '_wp_page_template', 'elementor_header_footer'),
(8706, 743, '_elementor_edit_mode', 'builder'),
(8707, 743, '_elementor_template_type', 'wp-page'),
(8708, 743, '_elementor_version', '4.1.4'),
(8709, 743, '_elementor_pro_version', '4.1.2'),
(8710, 743, '_elementor_global_class_usage_indexed', '1'),
(8711, 743, '_elementor_global_class_usage_indexed_preview', '1'),
(8712, 743, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8713, 743, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8715, 743, '_elementor_page_settings', 'a:0:{}'),
(8717, 744, '_elementor_edit_mode', 'builder'),
(8718, 744, '_elementor_template_type', 'wp-page'),
(8719, 744, '_elementor_version', '4.1.4'),
(8720, 744, '_elementor_pro_version', '4.1.2'),
(8721, 744, '_elementor_global_class_usage_indexed', '1'),
(8722, 744, '_elementor_global_class_usage_indexed_preview', '1'),
(8723, 744, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8724, 744, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8728, 745, '_wp_page_template', 'elementor_header_footer'),
(8729, 745, '_elementor_edit_mode', 'builder'),
(8730, 745, '_elementor_template_type', 'wp-page'),
(8731, 745, '_elementor_version', '4.1.4'),
(8732, 745, '_elementor_pro_version', '4.1.2'),
(8733, 745, '_elementor_global_class_usage_indexed', '1'),
(8734, 745, '_elementor_global_class_usage_indexed_preview', '1'),
(8735, 745, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8736, 745, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8738, 745, '_elementor_page_settings', 'a:0:{}'),
(8739, 746, '_wp_page_template', 'elementor_header_footer'),
(8740, 746, '_elementor_edit_mode', 'builder'),
(8741, 746, '_elementor_template_type', 'wp-page'),
(8742, 746, '_elementor_version', '4.1.4'),
(8743, 746, '_elementor_pro_version', '4.1.2'),
(8744, 746, '_elementor_global_class_usage_indexed', '1'),
(8745, 746, '_elementor_global_class_usage_indexed_preview', '1'),
(8746, 746, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8747, 746, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8749, 746, '_elementor_page_settings', 'a:0:{}'),
(10834, 911, '_elementor_global_class_usage_indexed', '1'),
(8750, 747, '_wp_page_template', 'elementor_header_footer'),
(8751, 747, '_elementor_edit_mode', 'builder'),
(8752, 747, '_elementor_template_type', 'wp-page'),
(8753, 747, '_elementor_version', '4.1.4'),
(8754, 747, '_elementor_pro_version', '4.1.2'),
(8755, 747, '_elementor_global_class_usage_indexed', '1'),
(8756, 747, '_elementor_global_class_usage_indexed_preview', '1'),
(8757, 747, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8758, 747, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9290, 793, '_wp_page_template', 'elementor_header_footer'),
(8766, 749, '_wp_page_template', 'elementor_header_footer'),
(8767, 749, '_elementor_edit_mode', 'builder'),
(8768, 749, '_elementor_template_type', 'wp-page'),
(8769, 749, '_elementor_version', '4.1.4'),
(8770, 749, '_elementor_pro_version', '4.1.2'),
(8771, 749, '_elementor_global_class_usage_indexed', '1'),
(8772, 749, '_elementor_global_class_usage_indexed_preview', '1'),
(8773, 749, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8774, 749, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8849, 755, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2026/07/mental-healt-a.jpg\";s:8:\"filesize\";i:91472;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"mental-healt-a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"mental-healt-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7907;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"mental-healt-a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88899;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8834, 754, '_wp_page_template', 'elementor_header_footer'),
(8808, 752, '_wp_page_template', 'elementor_header_footer'),
(8809, 752, '_elementor_edit_mode', 'builder'),
(8810, 752, '_elementor_template_type', 'wp-page'),
(8811, 752, '_elementor_version', '4.1.4'),
(8812, 752, '_elementor_pro_version', '4.1.2'),
(8813, 752, '_elementor_global_class_usage_indexed', '1'),
(8814, 752, '_elementor_global_class_usage_indexed_preview', '1'),
(8815, 752, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8816, 752, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8764, 748, '_wp_attached_file', '2026/07/Caucasian-perso-a.jpg'),
(8765, 748, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2026/07/Caucasian-perso-a.jpg\";s:8:\"filesize\";i:166861;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Caucasian-perso-a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13374;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Caucasian-perso-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5430;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Caucasian-perso-a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54742;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(8776, 749, '_elementor_page_settings', 'a:0:{}'),
(8779, 750, '_wp_page_template', 'elementor_header_footer'),
(8780, 750, '_elementor_edit_mode', 'builder'),
(8781, 750, '_elementor_template_type', 'wp-page'),
(8782, 750, '_elementor_version', '4.1.4'),
(8783, 750, '_elementor_pro_version', '4.1.2'),
(8784, 750, '_elementor_global_class_usage_indexed', '1'),
(8785, 750, '_elementor_global_class_usage_indexed_preview', '1'),
(8786, 750, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8787, 750, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8789, 750, '_elementor_page_settings', 'a:0:{}'),
(8792, 751, '_wp_page_template', 'elementor_header_footer'),
(8793, 751, '_elementor_edit_mode', 'builder'),
(8794, 751, '_elementor_template_type', 'wp-page'),
(8795, 751, '_elementor_version', '4.1.4'),
(8796, 751, '_elementor_pro_version', '4.1.2'),
(8797, 751, '_elementor_global_class_usage_indexed', '1'),
(8798, 751, '_elementor_global_class_usage_indexed_preview', '1'),
(8799, 751, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8800, 751, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8872, 758, '_wp_page_template', 'elementor_header_footer'),
(8850, 756, '_wp_page_template', 'elementor_header_footer'),
(8851, 756, '_elementor_edit_mode', 'builder'),
(8852, 756, '_elementor_template_type', 'wp-page'),
(8853, 756, '_elementor_version', '4.1.4'),
(8854, 756, '_elementor_pro_version', '4.1.2'),
(8855, 756, '_elementor_global_class_usage_indexed', '1'),
(8856, 756, '_elementor_global_class_usage_indexed_preview', '1'),
(8857, 756, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8858, 756, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8848, 755, '_wp_attached_file', '2026/07/mental-healt-a.jpg'),
(8818, 752, '_elementor_page_settings', 'a:0:{}'),
(8821, 753, '_wp_page_template', 'elementor_header_footer'),
(8822, 753, '_elementor_edit_mode', 'builder'),
(8823, 753, '_elementor_template_type', 'wp-page'),
(8824, 753, '_elementor_version', '4.1.4'),
(8825, 753, '_elementor_pro_version', '4.1.2'),
(8826, 753, '_elementor_global_class_usage_indexed', '1'),
(8827, 753, '_elementor_global_class_usage_indexed_preview', '1'),
(8828, 753, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8829, 753, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8831, 753, '_elementor_page_settings', 'a:0:{}'),
(8835, 754, '_elementor_edit_mode', 'builder'),
(8836, 754, '_elementor_template_type', 'wp-page'),
(8837, 754, '_elementor_version', '4.1.4'),
(8838, 754, '_elementor_pro_version', '4.1.2'),
(8839, 754, '_elementor_global_class_usage_indexed', '1'),
(8840, 754, '_elementor_global_class_usage_indexed_preview', '1'),
(8841, 754, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8842, 754, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8860, 756, '_elementor_page_settings', 'a:0:{}'),
(8861, 757, '_wp_page_template', 'elementor_header_footer'),
(8862, 757, '_elementor_edit_mode', 'builder'),
(8863, 757, '_elementor_template_type', 'wp-page'),
(8864, 757, '_elementor_version', '4.1.4'),
(8865, 757, '_elementor_pro_version', '4.1.2'),
(8866, 757, '_elementor_global_class_usage_indexed', '1'),
(8867, 757, '_elementor_global_class_usage_indexed_preview', '1'),
(8868, 757, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8869, 757, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8871, 757, '_elementor_page_settings', 'a:0:{}'),
(8873, 758, '_elementor_edit_mode', 'builder'),
(8874, 758, '_elementor_template_type', 'wp-page'),
(8875, 758, '_elementor_version', '4.1.4'),
(8876, 758, '_elementor_pro_version', '4.1.2'),
(8877, 758, '_elementor_global_class_usage_indexed', '1'),
(8878, 758, '_elementor_global_class_usage_indexed_preview', '1'),
(8879, 758, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8880, 758, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9264, 791, '_wp_page_template', 'elementor_header_footer'),
(9265, 791, '_elementor_edit_mode', 'builder'),
(9266, 791, '_elementor_template_type', 'wp-page'),
(9267, 791, '_elementor_version', '4.1.4'),
(9268, 791, '_elementor_pro_version', '4.1.2'),
(9269, 791, '_elementor_global_class_usage_indexed', '1'),
(9270, 791, '_elementor_global_class_usage_indexed_preview', '1'),
(9271, 791, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9272, 791, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9328, 797, '_wp_page_template', 'elementor_header_footer'),
(9306, 795, '_wp_page_template', 'elementor_header_footer'),
(9307, 795, '_elementor_edit_mode', 'builder'),
(9308, 795, '_elementor_template_type', 'wp-page'),
(9309, 795, '_elementor_version', '4.1.4'),
(9310, 795, '_elementor_pro_version', '4.1.2'),
(9311, 795, '_elementor_global_class_usage_indexed', '1'),
(9312, 795, '_elementor_global_class_usage_indexed_preview', '1'),
(9313, 795, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9314, 795, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top.jpg\",\"id\":790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8896, 759, '_elementor_page_settings', 'a:0:{}'),
(8899, 760, '_wp_page_template', 'default'),
(8901, 760, '_elementor_global_class_usage_indexed', '1'),
(8902, 760, '_elementor_edit_mode', 'builder'),
(8903, 760, '_elementor_template_type', 'wp-page'),
(8904, 760, '_elementor_version', '4.1.4'),
(8905, 760, '_elementor_pro_version', '4.1.2'),
(8906, 760, '_elementor_global_class_usage_indexed_preview', '1'),
(8907, 760, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8908, 760, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8909, 760, '_elementor_page_settings', 'a:0:{}'),
(8914, 761, '_elementor_global_class_usage_indexed', '1'),
(8915, 761, '_elementor_edit_mode', 'builder'),
(8916, 761, '_elementor_template_type', 'wp-page'),
(8917, 761, '_elementor_version', '4.1.4'),
(8918, 761, '_elementor_pro_version', '4.1.2'),
(8919, 761, '_elementor_global_class_usage_indexed_preview', '1'),
(8920, 761, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8921, 761, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9120, 778, '_wp_page_template', 'default'),
(9098, 776, '_wp_page_template', 'default'),
(9100, 776, '_elementor_global_class_usage_indexed', '1'),
(9101, 776, '_elementor_edit_mode', 'builder'),
(9102, 776, '_elementor_template_type', 'wp-page'),
(9103, 776, '_elementor_version', '4.1.4'),
(9104, 776, '_elementor_pro_version', '4.1.2'),
(9105, 776, '_elementor_global_class_usage_indexed_preview', '1'),
(9106, 776, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9107, 776, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgent-care-real-a.jpg\",\"id\":768,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8938, 762, '_elementor_page_settings', 'a:0:{}'),
(8941, 763, '_wp_page_template', 'default'),
(8943, 763, '_elementor_global_class_usage_indexed', '1'),
(8944, 763, '_elementor_edit_mode', 'builder'),
(8945, 763, '_elementor_template_type', 'wp-page'),
(8946, 763, '_elementor_version', '4.1.4'),
(8947, 763, '_elementor_pro_version', '4.1.2'),
(8948, 763, '_elementor_global_class_usage_indexed_preview', '1'),
(8949, 763, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8950, 763, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Mental-Wellness-aa.jpg\",\"id\":551,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8951, 763, '_elementor_page_settings', 'a:0:{}'),
(8956, 764, '_elementor_global_class_usage_indexed', '1'),
(8957, 764, '_elementor_edit_mode', 'builder'),
(8958, 764, '_elementor_template_type', 'wp-page'),
(8959, 764, '_elementor_version', '4.1.4'),
(8960, 764, '_elementor_pro_version', '4.1.2'),
(8961, 764, '_elementor_global_class_usage_indexed_preview', '1'),
(8962, 764, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8963, 764, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10256, 870, '_wp_page_template', 'default'),
(10230, 868, '_wp_page_template', 'default'),
(10232, 868, '_elementor_global_class_usage_indexed', '1'),
(10233, 868, '_elementor_edit_mode', 'builder'),
(10234, 868, '_elementor_template_type', 'wp-page'),
(10235, 868, '_elementor_version', '4.1.4'),
(10236, 868, '_elementor_pro_version', '4.1.2'),
(10237, 868, '_elementor_global_class_usage_indexed_preview', '1'),
(10238, 868, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10239, 868, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8980, 765, '_elementor_page_settings', 'a:0:{}'),
(8983, 766, '_wp_page_template', 'default'),
(8985, 766, '_elementor_global_class_usage_indexed', '1'),
(8986, 766, '_elementor_edit_mode', 'builder'),
(8987, 766, '_elementor_template_type', 'wp-page');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8988, 766, '_elementor_version', '4.1.4'),
(8989, 766, '_elementor_pro_version', '4.1.2'),
(8990, 766, '_elementor_global_class_usage_indexed_preview', '1'),
(8991, 766, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(8992, 766, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8993, 766, '_elementor_page_settings', 'a:0:{}'),
(8998, 767, '_elementor_global_class_usage_indexed', '1'),
(8999, 767, '_elementor_edit_mode', 'builder'),
(9000, 767, '_elementor_template_type', 'wp-page'),
(9001, 767, '_elementor_version', '4.1.4'),
(9002, 767, '_elementor_pro_version', '4.1.2'),
(9003, 767, '_elementor_global_class_usage_indexed_preview', '1'),
(9004, 767, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9005, 767, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10272, 871, '_wp_page_template', 'default'),
(10274, 871, '_elementor_global_class_usage_indexed', '1'),
(10275, 871, '_elementor_edit_mode', 'builder'),
(10276, 871, '_elementor_template_type', 'wp-page'),
(10277, 871, '_elementor_version', '4.1.4'),
(10278, 871, '_elementor_pro_version', '4.1.2'),
(10279, 871, '_elementor_global_class_usage_indexed_preview', '1'),
(10280, 871, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10281, 871, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9012, 768, '_wp_attached_file', '2026/07/urgent-care-real-a.jpg'),
(9013, 768, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:30:\"2026/07/urgent-care-real-a.jpg\";s:8:\"filesize\";i:191223;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"urgent-care-real-a-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19341;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"urgent-care-real-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7846;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"urgent-care-real-a-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70492;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(9024, 769, '_elementor_page_settings', 'a:0:{}'),
(9027, 770, '_wp_page_template', 'default'),
(9029, 770, '_elementor_global_class_usage_indexed', '1'),
(9030, 770, '_elementor_edit_mode', 'builder'),
(9031, 770, '_elementor_template_type', 'wp-page'),
(9032, 770, '_elementor_version', '4.1.4'),
(9033, 770, '_elementor_pro_version', '4.1.2'),
(9034, 770, '_elementor_global_class_usage_indexed_preview', '1'),
(9035, 770, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9036, 770, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Urgent-Care-health-care-a.jpg\",\"id\":592,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9037, 770, '_elementor_page_settings', 'a:0:{}'),
(9042, 771, '_elementor_global_class_usage_indexed', '1'),
(9043, 771, '_elementor_edit_mode', 'builder'),
(9044, 771, '_elementor_template_type', 'wp-page'),
(9045, 771, '_elementor_version', '4.1.4'),
(9046, 771, '_elementor_pro_version', '4.1.2'),
(9047, 771, '_elementor_global_class_usage_indexed_preview', '1'),
(9048, 771, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9049, 771, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgent-care-real-a.jpg\",\"id\":768,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9077, 773, '_elementor_page_settings', 'a:0:{}'),
(9082, 774, '_elementor_global_class_usage_indexed', '1'),
(9083, 774, '_elementor_edit_mode', 'builder'),
(9084, 774, '_elementor_template_type', 'wp-page'),
(9085, 774, '_elementor_version', '4.1.4'),
(9086, 774, '_elementor_pro_version', '4.1.2'),
(9087, 774, '_elementor_global_class_usage_indexed_preview', '1'),
(9088, 774, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9089, 774, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgent-care-real-a.jpg\",\"id\":768,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10618, 896, '_wp_page_template', 'default'),
(10620, 896, '_elementor_global_class_usage_indexed', '1'),
(10621, 896, '_elementor_edit_mode', 'builder'),
(10622, 896, '_elementor_template_type', 'wp-page'),
(10623, 896, '_elementor_version', '4.1.4'),
(10624, 896, '_elementor_pro_version', '4.1.2'),
(10625, 896, '_elementor_global_class_usage_indexed_preview', '1'),
(10626, 896, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10627, 896, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9108, 776, '_elementor_page_settings', 'a:0:{}'),
(9109, 777, '_wp_page_template', 'default');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9111, 777, '_elementor_global_class_usage_indexed', '1'),
(9112, 777, '_elementor_edit_mode', 'builder'),
(9113, 777, '_elementor_template_type', 'wp-page'),
(9114, 777, '_elementor_version', '4.1.4'),
(9115, 777, '_elementor_pro_version', '4.1.2'),
(9116, 777, '_elementor_global_class_usage_indexed_preview', '1'),
(9117, 777, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9118, 777, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgent-care-real-a.jpg\",\"id\":768,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9119, 777, '_elementor_page_settings', 'a:0:{}'),
(9122, 778, '_elementor_global_class_usage_indexed', '1'),
(9123, 778, '_elementor_edit_mode', 'builder'),
(9124, 778, '_elementor_template_type', 'wp-page'),
(9125, 778, '_elementor_version', '4.1.4'),
(9126, 778, '_elementor_pro_version', '4.1.2'),
(9127, 778, '_elementor_global_class_usage_indexed_preview', '1'),
(9128, 778, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9129, 778, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9222, 787, '_wp_page_template', 'default'),
(9224, 787, '_elementor_global_class_usage_indexed', '1'),
(9225, 787, '_elementor_edit_mode', 'builder'),
(9226, 787, '_elementor_template_type', 'wp-page'),
(9227, 787, '_elementor_version', '4.1.4'),
(9228, 787, '_elementor_pro_version', '4.1.2'),
(9229, 787, '_elementor_global_class_usage_indexed_preview', '1'),
(9230, 787, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9231, 787, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9132, 779, '_wp_attached_file', '2026/07/single-urgen-a.jpg'),
(9133, 779, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:896;s:4:\"file\";s:26:\"2026/07/single-urgen-a.jpg\";s:8:\"filesize\";i:145880;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"single-urgen-a-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13393;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"single-urgen-a-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77450;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"single-urgen-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6945;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"single-urgen-a-768x573.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50174;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(9144, 780, '_elementor_page_settings', 'a:0:{}'),
(9147, 781, '_wp_page_template', 'default'),
(9149, 781, '_elementor_global_class_usage_indexed', '1'),
(9150, 781, '_elementor_edit_mode', 'builder'),
(9151, 781, '_elementor_template_type', 'wp-page'),
(9152, 781, '_elementor_version', '4.1.4'),
(9153, 781, '_elementor_pro_version', '4.1.2'),
(9154, 781, '_elementor_global_class_usage_indexed_preview', '1'),
(9155, 781, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9156, 781, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgent-care-real-a.jpg\",\"id\":768,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9157, 781, '_elementor_page_settings', 'a:0:{}'),
(9162, 782, '_elementor_global_class_usage_indexed', '1'),
(9163, 782, '_elementor_edit_mode', 'builder'),
(9164, 782, '_elementor_template_type', 'wp-page'),
(9165, 782, '_elementor_version', '4.1.4'),
(9166, 782, '_elementor_pro_version', '4.1.2'),
(9167, 782, '_elementor_global_class_usage_indexed_preview', '1'),
(9168, 782, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9169, 782, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(11016, 924, '_wp_page_template', 'default'),
(10992, 922, '_elementor_global_class_usage_indexed', '1'),
(10993, 922, '_elementor_edit_mode', 'builder'),
(10994, 922, '_elementor_template_type', 'wp-page'),
(10995, 922, '_elementor_version', '4.1.4'),
(10996, 922, '_elementor_pro_version', '4.1.2'),
(10997, 922, '_elementor_global_class_usage_indexed_preview', '1'),
(10998, 922, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10999, 922, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a757522\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9176, 783, '_wp_attached_file', '2026/07/Personalized-birth-control-care-aa.jpg'),
(9177, 783, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:46:\"2026/07/Personalized-birth-control-care-aa.jpg\";s:8:\"filesize\";i:145147;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Personalized-birth-control-care-aa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18591;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Personalized-birth-control-care-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7664;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Personalized-birth-control-care-aa-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68555;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(9188, 784, '_elementor_page_settings', 'a:0:{}'),
(9191, 785, '_wp_page_template', 'elementor_header_footer'),
(9193, 785, '_elementor_global_class_usage_indexed', '1'),
(9194, 785, '_elementor_edit_mode', 'builder'),
(9195, 785, '_elementor_template_type', 'wp-page'),
(9196, 785, '_elementor_version', '4.1.4'),
(9197, 785, '_elementor_pro_version', '4.1.2'),
(9198, 785, '_elementor_global_class_usage_indexed_preview', '1'),
(9199, 785, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9200, 785, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9201, 785, '_elementor_page_settings', 'a:0:{}'),
(9206, 786, '_elementor_global_class_usage_indexed', '1'),
(9207, 786, '_elementor_edit_mode', 'builder'),
(9208, 786, '_elementor_template_type', 'wp-page'),
(9209, 786, '_elementor_version', '4.1.4'),
(9210, 786, '_elementor_pro_version', '4.1.2'),
(9211, 786, '_elementor_global_class_usage_indexed_preview', '1'),
(9212, 786, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9213, 786, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10698, 26, '_elementor_page_settings', 'a:0:{}'),
(10699, 26, '_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:3:{s:13:\"content_width\";i:2;s:20:\"flex_justify_content\";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:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10214, 867, '_wp_page_template', 'default'),
(10188, 865, '_wp_page_template', 'default'),
(10190, 865, '_elementor_global_class_usage_indexed', '1'),
(10191, 865, '_elementor_edit_mode', 'builder'),
(10192, 865, '_elementor_template_type', 'wp-page'),
(10193, 865, '_elementor_version', '4.1.4'),
(10194, 865, '_elementor_pro_version', '4.1.2'),
(10195, 865, '_elementor_global_class_usage_indexed_preview', '1'),
(10196, 865, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10197, 865, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9304, 794, '_wp_attached_file', '2026/07/about-top-new.jpg'),
(9305, 794, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1165;s:6:\"height\";i:1350;s:4:\"file\";s:25:\"2026/07/about-top-new.jpg\";s:8:\"filesize\";i:345107;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"about-top-new-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15151;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"about-top-new-884x1024.jpg\";s:5:\"width\";i:884;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115364;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"about-top-new-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"about-top-new-768x890.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:890;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90208;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(9232, 787, '_elementor_page_settings', 'a:0:{}'),
(9235, 788, '_wp_page_template', 'default'),
(9237, 788, '_elementor_global_class_usage_indexed', '1'),
(9238, 788, '_elementor_edit_mode', 'builder'),
(9239, 788, '_elementor_template_type', 'wp-page'),
(9240, 788, '_elementor_version', '4.1.4'),
(9241, 788, '_elementor_pro_version', '4.1.2'),
(9242, 788, '_elementor_global_class_usage_indexed_preview', '1'),
(9243, 788, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9244, 788, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pegneci-ab.jpg\",\"id\":723,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9245, 788, '_elementor_page_settings', 'a:0:{}'),
(9248, 789, '_wp_page_template', 'default'),
(9250, 789, '_elementor_global_class_usage_indexed', '1'),
(9251, 789, '_elementor_edit_mode', 'builder'),
(9252, 789, '_elementor_template_type', 'wp-page'),
(9253, 789, '_elementor_version', '4.1.4'),
(9254, 789, '_elementor_pro_version', '4.1.2'),
(9255, 789, '_elementor_global_class_usage_indexed_preview', '1'),
(9256, 789, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9257, 789, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9274, 791, '_elementor_page_settings', 'a:0:{}'),
(9277, 792, '_wp_page_template', 'elementor_header_footer'),
(9278, 792, '_elementor_edit_mode', 'builder'),
(9279, 792, '_elementor_template_type', 'wp-page'),
(9280, 792, '_elementor_version', '4.1.4'),
(9281, 792, '_elementor_pro_version', '4.1.2'),
(9282, 792, '_elementor_global_class_usage_indexed', '1'),
(9283, 792, '_elementor_global_class_usage_indexed_preview', '1'),
(9284, 792, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9285, 792, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9287, 792, '_elementor_page_settings', 'a:0:{}'),
(9291, 793, '_elementor_edit_mode', 'builder'),
(9292, 793, '_elementor_template_type', 'wp-page'),
(9293, 793, '_elementor_version', '4.1.4'),
(9294, 793, '_elementor_pro_version', '4.1.2'),
(9295, 793, '_elementor_global_class_usage_indexed', '1'),
(9296, 793, '_elementor_global_class_usage_indexed_preview', '1'),
(9297, 793, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9298, 793, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top.jpg\",\"id\":790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9316, 795, '_elementor_page_settings', 'a:0:{}'),
(9317, 796, '_wp_page_template', 'elementor_header_footer'),
(9318, 796, '_elementor_edit_mode', 'builder'),
(9319, 796, '_elementor_template_type', 'wp-page'),
(9320, 796, '_elementor_version', '4.1.4'),
(9321, 796, '_elementor_pro_version', '4.1.2'),
(9322, 796, '_elementor_global_class_usage_indexed', '1'),
(9323, 796, '_elementor_global_class_usage_indexed_preview', '1'),
(9324, 796, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9325, 796, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top.jpg\",\"id\":790,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9327, 796, '_elementor_page_settings', 'a:0:{}'),
(9329, 797, '_elementor_edit_mode', 'builder'),
(9330, 797, '_elementor_template_type', 'wp-page'),
(9331, 797, '_elementor_version', '4.1.4'),
(9332, 797, '_elementor_pro_version', '4.1.2'),
(9333, 797, '_elementor_global_class_usage_indexed', '1'),
(9334, 797, '_elementor_global_class_usage_indexed_preview', '1'),
(9335, 797, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9336, 797, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9368, 800, '_wp_page_template', 'elementor_header_footer'),
(9342, 798, '_wp_page_template', 'elementor_header_footer'),
(9343, 798, '_elementor_edit_mode', 'builder'),
(9344, 798, '_elementor_template_type', 'wp-page'),
(9345, 798, '_elementor_version', '4.1.4'),
(9346, 798, '_elementor_pro_version', '4.1.2'),
(9347, 798, '_elementor_global_class_usage_indexed', '1'),
(9348, 798, '_elementor_global_class_usage_indexed_preview', '1'),
(9349, 798, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9350, 798, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9450, 806, '_wp_page_template', 'elementor_header_footer'),
(9424, 804, '_wp_page_template', 'elementor_header_footer'),
(9425, 804, '_elementor_edit_mode', 'builder'),
(9426, 804, '_elementor_template_type', 'wp-page'),
(9427, 804, '_elementor_version', '4.1.4'),
(9428, 804, '_elementor_pro_version', '4.1.2'),
(9429, 804, '_elementor_global_class_usage_indexed', '1'),
(9430, 804, '_elementor_global_class_usage_indexed_preview', '1'),
(9431, 804, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9432, 804, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9392, 801, '_elementor_page_settings', 'a:0:{}'),
(9395, 802, '_wp_page_template', 'elementor_header_footer'),
(9397, 802, '_elementor_global_class_usage_indexed', '1'),
(9398, 802, '_elementor_edit_mode', 'builder'),
(9399, 802, '_elementor_template_type', 'wp-page'),
(9400, 802, '_elementor_version', '4.1.4'),
(9401, 802, '_elementor_pro_version', '4.1.2'),
(9402, 802, '_elementor_global_class_usage_indexed_preview', '1'),
(9403, 802, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9404, 802, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/wellness-good.jpg\",\"id\":704,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9405, 802, '_elementor_page_settings', 'a:0:{}'),
(10789, 908, '_wp_page_template', 'elementor_header_footer'),
(9408, 803, '_wp_page_template', 'elementor_header_footer'),
(9410, 803, '_elementor_global_class_usage_indexed', '1'),
(9411, 803, '_elementor_edit_mode', 'builder'),
(9412, 803, '_elementor_template_type', 'wp-page'),
(9413, 803, '_elementor_version', '4.1.4'),
(9414, 803, '_elementor_pro_version', '4.1.2'),
(9415, 803, '_elementor_global_class_usage_indexed_preview', '1'),
(9416, 803, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9417, 803, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-10 08:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9352, 798, '_elementor_page_settings', 'a:0:{}'),
(9355, 799, '_wp_page_template', 'elementor_header_footer'),
(9356, 799, '_elementor_edit_mode', 'builder'),
(9357, 799, '_elementor_template_type', 'wp-page'),
(9358, 799, '_elementor_version', '4.1.4'),
(9359, 799, '_elementor_pro_version', '4.1.2'),
(9360, 799, '_elementor_global_class_usage_indexed', '1'),
(9361, 799, '_elementor_global_class_usage_indexed_preview', '1'),
(9362, 799, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9363, 799, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9365, 799, '_elementor_page_settings', 'a:0:{}'),
(9369, 800, '_elementor_edit_mode', 'builder'),
(9370, 800, '_elementor_template_type', 'wp-page'),
(9371, 800, '_elementor_version', '4.1.4'),
(9372, 800, '_elementor_pro_version', '4.1.2'),
(9373, 800, '_elementor_global_class_usage_indexed', '1'),
(9374, 800, '_elementor_global_class_usage_indexed_preview', '1'),
(9375, 800, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9376, 800, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9542, 814, '_wp_page_template', 'elementor_header_footer'),
(9516, 812, '_wp_page_template', 'elementor_header_footer'),
(9517, 812, '_elementor_edit_mode', 'builder'),
(9518, 812, '_elementor_template_type', 'wp-page'),
(9519, 812, '_elementor_version', '4.1.4'),
(9520, 812, '_elementor_pro_version', '4.1.2'),
(9521, 812, '_elementor_global_class_usage_indexed', '1'),
(9522, 812, '_elementor_global_class_usage_indexed_preview', '1'),
(9523, 812, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9524, 812, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9434, 804, '_elementor_page_settings', 'a:0:{}'),
(9437, 805, '_wp_page_template', 'elementor_header_footer'),
(9438, 805, '_elementor_edit_mode', 'builder'),
(9439, 805, '_elementor_template_type', 'wp-page'),
(9440, 805, '_elementor_version', '4.1.4'),
(9441, 805, '_elementor_pro_version', '4.1.2'),
(9442, 805, '_elementor_global_class_usage_indexed', '1'),
(9443, 805, '_elementor_global_class_usage_indexed_preview', '1'),
(9444, 805, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9445, 805, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9447, 805, '_elementor_page_settings', 'a:0:{}'),
(9451, 806, '_elementor_edit_mode', 'builder'),
(9452, 806, '_elementor_template_type', 'wp-page'),
(9453, 806, '_elementor_version', '4.1.4'),
(9454, 806, '_elementor_pro_version', '4.1.2'),
(9455, 806, '_elementor_global_class_usage_indexed', '1'),
(9456, 806, '_elementor_global_class_usage_indexed_preview', '1'),
(9457, 806, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9458, 806, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11116, 20, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:4:{i:0;s:12:\"widget-image\";i:1;s:22:\"e-animation-fadeInLeft\";i:2;s:14:\"widget-heading\";i:3;s:23:\"e-animation-fadeInRight\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(11117, 20, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642199;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11118, 20, '_elementor_element_cache', '{\"timeout\":1783728599,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-b504f46 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"b504f46\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-7241e23 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"7241e23\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-03ba2b8 elementor-widget elementor-widget-image\\\" data-id=\\\"03ba2b8\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\\\" class=\\\"attachment-full size-full wp-image-561\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-73114c3 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"73114c3\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d52e3d2 elementor-widget elementor-widget-heading\\\" data-id=\\\"d52e3d2\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Longevity + Regenerative Aesthetics<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6Ijk4MmM3NzQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5XaGVyZSBiZWF1dHkgbWVldHMgd2VsbG5lc3MuPFwvcD48cD5QZXJzb25hbGl6ZWQgdHJlYXRtZW50cyBkZXNpZ25lZCB0byBlbmhhbmNlIHlvdXIgYXBwZWFyYW5jZSwgc3VwcG9ydCBoZWFsdGh5IGFnaW5nLCBhbmQgcHJvbW90ZSBsb25nLXRlcm0gdml0YWxpdHkuPFwvcD48dWwgc3R5bGU9XCJtYXJnaW4tbGVmdDogMThweDtcIj48bGk+Qm90b3hcdTAwYWU8XC9saT48bGk+TWljcm9uZWVkbGluZzxcL2xpPjxsaT5QbGF0ZWxldC1SaWNoIFBsYXNtYSAoUFJQKTxcL2xpPjxsaT5IYWlyIFJlc3RvcmF0aW9uPFwvbGk+PGxpPlNraW4gUmVqdXZlbmF0aW9uPFwvbGk+PGxpPlJlY292ZXJ5LUZvY3VzZWQgV2VsbG5lc3MgUHJvdG9jb2xzPFwvbGk+PFwvdWw+PHA+SGVscGluZyB5b3UgbG9vayByZWZyZXNoZWQsIGZlZWwgcmV2aXRhbGl6ZWQsIGFuZCBhZ2Ugd2l0aCBjb25maWRlbmNlLjxcL3A+IiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI5MTkzY2MyIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI2LTA3LTA4IDEyOjE3In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-846f422 elementor-widget elementor-widget-button\\\" data-id=\\\"846f422\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Book Now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(11119, 22, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:4:{i:0;s:12:\"widget-image\";i:1;s:22:\"e-animation-fadeInLeft\";i:2;s:14:\"widget-heading\";i:3;s:23:\"e-animation-fadeInRight\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(11120, 22, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642213;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11121, 22, '_elementor_element_cache', '{\"timeout\":1783728614,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-ee116b3 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"ee116b3\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-1d08876 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"1d08876\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c0b83b7 elementor-widget elementor-widget-image\\\" data-id=\\\"c0b83b7\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\\\" class=\\\"attachment-full size-full wp-image-660\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c591f0c e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"c591f0c\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ddcd4cb elementor-widget elementor-widget-heading\\\" data-id=\\\"ddcd4cb\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Weight Optimization<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjNkNTBkZGEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5BY2hpZXZlIHN1c3RhaW5hYmxlIHJlc3VsdHMgdGhyb3VnaCBwZXJzb25hbGl6ZWQsIHNjaWVuY2UtYmFzZWQgY2FyZS48XC9wPjxwPk91ciBjb21wcmVoZW5zaXZlIGFwcHJvYWNoIGZvY3VzZXMgb24gaW1wcm92aW5nIG1ldGFib2xpYyBoZWFsdGgsIGJvZHkgY29tcG9zaXRpb24sIGFuZCBsb25nLXRlcm0gd2VsbG5lc3NcdTIwMTRub3QganVzdCB0aGUgbnVtYmVyIG9uIHRoZSBzY2FsZS48XC9wPjx1bCBzdHlsZT1cIm1hcmdpbi1sZWZ0OiAxOHB4O1wiPjxsaT5NZWRpY2FsIFdlaWdodCBNYW5hZ2VtZW50PFwvbGk+PGxpPkdMUC0xIFRoZXJhcHkgKHdoZW4gYXBwcm9wcmlhdGUpPFwvbGk+PGxpPk1ldGFib2xpYyBIZWFsdGggT3B0aW1pemF0aW9uPFwvbGk+PGxpPlBlcnNvbmFsaXplZCBOdXRyaXRpb24gR3VpZGFuY2U8XC9saT48bGk+TGlmZXN0eWxlICZhbXA7IEhhYml0IENvYWNoaW5nPFwvbGk+PGxpPkhvcm1vbmUgRXZhbHVhdGlvbjxcL2xpPjxsaT5PbmdvaW5nIEFjY291bnRhYmlsaXR5ICZhbXA7IFN1cHBvcnQ8XC9saT48XC91bD48cD5IZWxwaW5nIHlvdSBsb3NlIHdlaWdodCwgZ2FpbiBjb25maWRlbmNlLCBhbmQgYnVpbGQgbGFzdGluZyBoZWFsdGguPFwvcD4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjkxOTNjYzIiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjYtMDctMDggMTI6MTcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-526c9cc elementor-widget elementor-widget-heading\\\" data-id=\\\"526c9cc\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Schedule Your Weight Loss Consultation for $75<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-dbdee36 elementor-widget elementor-widget-button\\\" data-id=\\\"dbdee36\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Book Now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(11122, 36, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:6:{i:0;s:14:\"widget-heading\";i:1;s:14:\"widget-divider\";i:2;s:16:\"widget-icon-list\";i:3;s:22:\"e-animation-fadeInLeft\";i:4;s:11:\"widget-form\";i:5;s:23:\"e-animation-fadeInRight\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(11123, 36, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642229;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:2;s:10:\"fa-regular\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11124, 36, '_elementor_element_cache', '{\"timeout\":1783728629,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-5ed8d6b6 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"5ed8d6b6\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-17f70d6d e-flex e-con-boxed e-con e-child\\\" data-id=\\\"17f70d6d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-3f7d1804 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"3f7d1804\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5297009f elementor-widget elementor-widget-heading\\\" data-id=\\\"5297009f\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Contact Info<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5909d5e5 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"5909d5e5\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4d2ddd5 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"4d2ddd5\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:3185064245\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">(318) 506-4245<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"fax:8556310063\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-fax\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">855-631-0063<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:Info@everwelllw.org\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Info@everwelllw.org<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-54523984 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"54523984\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-43bd30aa elementor-widget elementor-widget-heading\\\" data-id=\\\"43bd30aa\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Get In Touch With Us<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-89c2527 elementor-button-align-stretch elementor-widget elementor-widget-form\\\" data-id=\\\"89c2527\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\\\" data-widget_type=\\\"form.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<form class=\\\"elementor-form\\\" method=\\\"post\\\" name=\\\"Contact Us\\\" aria-label=\\\"Contact Us\\\">\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"post_id\\\" value=\\\"36\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"form_id\\\" value=\\\"89c2527\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"referer_title\\\" value=\\\"Contact Us\\\" \\/>\\n\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"queried_id\\\" value=\\\"36\\\"\\/>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"elementor-form-fields-wrapper elementor-labels-\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-name\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tFirst Name\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[name]\\\" id=\\\"form-field-name\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"First Name\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_b94c01e elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_b94c01e\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tLast Name\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[field_b94c01e]\\\" id=\\\"form-field-field_b94c01e\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"Last Name\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-email\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tPhone Number \\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"tel\\\" name=\\\"form_fields[email]\\\" id=\\\"form-field-email\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"Phone Number \\\" required=\\\"required\\\" pattern=\\\"[0-9()#&amp;+*-=.]+\\\" title=\\\"Only numbers and phone characters (#, -, *, etc) are accepted.\\\">\\n\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-field_cc1facf elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_cc1facf\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tEmail\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"email\\\" name=\\\"form_fields[field_cc1facf]\\\" id=\\\"form-field-field_cc1facf\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"Email Address\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-message\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tMessage\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t<textarea class=\\\"elementor-field-textual elementor-field  elementor-size-lg\\\" name=\\\"form_fields[message]\\\" id=\\\"form-field-message\\\" rows=\\\"5\\\" placeholder=\\\"Message\\\"><\\/textarea>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\\\">\\n\\t\\t\\t\\t\\t<button class=\\\"elementor-button elementor-size-md\\\" type=\\\"submit\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Submit<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/button>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/form>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(9584, 817, '_wp_page_template', 'elementor_header_footer'),
(9558, 815, '_wp_page_template', 'elementor_header_footer'),
(9559, 815, '_elementor_edit_mode', 'builder'),
(9560, 815, '_elementor_template_type', 'wp-page'),
(9561, 815, '_elementor_version', '4.1.4'),
(9562, 815, '_elementor_pro_version', '4.1.2'),
(9563, 815, '_elementor_global_class_usage_indexed', '1'),
(9564, 815, '_elementor_global_class_usage_indexed_preview', '1'),
(9565, 815, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9566, 815, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9476, 807, '_elementor_page_settings', 'a:0:{}'),
(9479, 808, '_wp_page_template', 'elementor_header_footer'),
(9481, 808, '_elementor_global_class_usage_indexed', '1'),
(9482, 808, '_elementor_edit_mode', 'builder'),
(9483, 808, '_elementor_template_type', 'wp-page'),
(9484, 808, '_elementor_version', '4.1.4'),
(9485, 808, '_elementor_pro_version', '4.1.2'),
(9486, 808, '_elementor_global_class_usage_indexed_preview', '1'),
(9487, 808, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9488, 808, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"Info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9489, 808, '_elementor_page_settings', 'a:0:{}'),
(9494, 809, '_elementor_global_class_usage_indexed', '1'),
(9495, 809, '_elementor_edit_mode', 'builder'),
(9496, 809, '_elementor_template_type', 'wp-page'),
(9497, 809, '_elementor_version', '4.1.4'),
(9498, 809, '_elementor_pro_version', '4.1.2'),
(9499, 809, '_elementor_global_class_usage_indexed_preview', '1'),
(9500, 809, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9501, 809, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(11058, 927, '_wp_page_template', 'default'),
(11032, 925, '_wp_page_template', 'default'),
(11034, 925, '_elementor_global_class_usage_indexed', '1'),
(11035, 925, '_elementor_edit_mode', 'builder'),
(11036, 925, '_elementor_template_type', 'wp-page'),
(11037, 925, '_elementor_version', '4.1.4'),
(11038, 925, '_elementor_pro_version', '4.1.2'),
(11039, 925, '_elementor_global_class_usage_indexed_preview', '1'),
(11040, 925, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(11041, 925, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10761, 36, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10762, 36, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:2;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:14:\"flex_direction\";i:2;s:8:\"flex_gap\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:5:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:5:{s:13:\"form_metadata\";i:1;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:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:2:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10773, 906, '_elementor_page_settings', 'a:0:{}'),
(9526, 812, '_elementor_page_settings', 'a:0:{}'),
(9529, 813, '_wp_page_template', 'elementor_header_footer'),
(9530, 813, '_elementor_edit_mode', 'builder'),
(9531, 813, '_elementor_template_type', 'wp-page'),
(9532, 813, '_elementor_version', '4.1.4'),
(9533, 813, '_elementor_pro_version', '4.1.2'),
(9534, 813, '_elementor_global_class_usage_indexed', '1'),
(9535, 813, '_elementor_global_class_usage_indexed_preview', '1'),
(9536, 813, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9537, 813, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\",\"id\":673,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9539, 813, '_elementor_page_settings', 'a:0:{}'),
(9543, 814, '_elementor_edit_mode', 'builder'),
(9544, 814, '_elementor_template_type', 'wp-page'),
(9545, 814, '_elementor_version', '4.1.4'),
(9546, 814, '_elementor_pro_version', '4.1.2'),
(9547, 814, '_elementor_global_class_usage_indexed', '1'),
(9548, 814, '_elementor_global_class_usage_indexed_preview', '1'),
(9549, 814, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9550, 814, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10833, 911, '_elementor_pro_version', '4.1.2'),
(9598, 818, '_wp_page_template', 'elementor_header_footer'),
(9599, 818, '_elementor_edit_mode', 'builder'),
(9600, 818, '_elementor_template_type', 'wp-page'),
(9601, 818, '_elementor_version', '4.1.4'),
(9602, 818, '_elementor_pro_version', '4.1.2'),
(9603, 818, '_elementor_global_class_usage_indexed', '1'),
(9604, 818, '_elementor_global_class_usage_indexed_preview', '1'),
(9605, 818, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9606, 818, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9568, 815, '_elementor_page_settings', 'a:0:{}'),
(9571, 816, '_wp_page_template', 'elementor_header_footer'),
(9572, 816, '_elementor_edit_mode', 'builder'),
(9573, 816, '_elementor_template_type', 'wp-page'),
(9574, 816, '_elementor_version', '4.1.4'),
(9575, 816, '_elementor_pro_version', '4.1.2'),
(9576, 816, '_elementor_global_class_usage_indexed', '1'),
(9577, 816, '_elementor_global_class_usage_indexed_preview', '1'),
(9578, 816, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9579, 816, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9581, 816, '_elementor_page_settings', 'a:0:{}'),
(9585, 817, '_elementor_edit_mode', 'builder'),
(9586, 817, '_elementor_template_type', 'wp-page'),
(9587, 817, '_elementor_version', '4.1.4'),
(9588, 817, '_elementor_pro_version', '4.1.2'),
(9589, 817, '_elementor_global_class_usage_indexed', '1'),
(9590, 817, '_elementor_global_class_usage_indexed_preview', '1'),
(9591, 817, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9592, 817, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9608, 818, '_elementor_page_settings', 'a:0:{}'),
(9609, 819, '_wp_page_template', 'elementor_header_footer'),
(9610, 819, '_elementor_edit_mode', 'builder'),
(9611, 819, '_elementor_template_type', 'wp-page'),
(9612, 819, '_elementor_version', '4.1.4'),
(9613, 819, '_elementor_pro_version', '4.1.2'),
(9614, 819, '_elementor_global_class_usage_indexed', '1'),
(9615, 819, '_elementor_global_class_usage_indexed_preview', '1'),
(9616, 819, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9617, 819, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9619, 819, '_elementor_page_settings', 'a:0:{}'),
(9620, 820, '_wp_page_template', 'elementor_header_footer'),
(9621, 820, '_elementor_edit_mode', 'builder'),
(9622, 820, '_elementor_template_type', 'wp-page'),
(9623, 820, '_elementor_version', '4.1.4'),
(9624, 820, '_elementor_pro_version', '4.1.2'),
(9625, 820, '_elementor_global_class_usage_indexed', '1'),
(9626, 820, '_elementor_global_class_usage_indexed_preview', '1'),
(9627, 820, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9628, 820, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9654, 823, '_wp_page_template', 'elementor_header_footer'),
(9632, 821, '_wp_page_template', 'elementor_header_footer'),
(9633, 821, '_elementor_edit_mode', 'builder'),
(9634, 821, '_elementor_template_type', 'wp-page'),
(9635, 821, '_elementor_version', '4.1.4'),
(9636, 821, '_elementor_pro_version', '4.1.2'),
(9637, 821, '_elementor_global_class_usage_indexed', '1'),
(9638, 821, '_elementor_global_class_usage_indexed_preview', '1'),
(9639, 821, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9640, 821, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9642, 821, '_elementor_page_settings', 'a:0:{}'),
(9643, 822, '_wp_page_template', 'elementor_header_footer'),
(9644, 822, '_elementor_edit_mode', 'builder'),
(9645, 822, '_elementor_template_type', 'wp-page'),
(9646, 822, '_elementor_version', '4.1.4'),
(9647, 822, '_elementor_pro_version', '4.1.2'),
(9648, 822, '_elementor_global_class_usage_indexed', '1'),
(9649, 822, '_elementor_global_class_usage_indexed_preview', '1'),
(9650, 822, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9651, 822, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9653, 822, '_elementor_page_settings', 'a:0:{}'),
(9655, 823, '_elementor_edit_mode', 'builder'),
(9656, 823, '_elementor_template_type', 'wp-page'),
(9657, 823, '_elementor_version', '4.1.4'),
(9658, 823, '_elementor_pro_version', '4.1.2'),
(9659, 823, '_elementor_global_class_usage_indexed', '1'),
(9660, 823, '_elementor_global_class_usage_indexed_preview', '1'),
(9661, 823, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9662, 823, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10832, 911, '_elementor_version', '4.1.4'),
(9666, 824, '_wp_page_template', 'elementor_header_footer'),
(9667, 824, '_elementor_edit_mode', 'builder'),
(9668, 824, '_elementor_template_type', 'wp-page'),
(9669, 824, '_elementor_version', '4.1.4'),
(9670, 824, '_elementor_pro_version', '4.1.2'),
(9671, 824, '_elementor_global_class_usage_indexed', '1'),
(9672, 824, '_elementor_global_class_usage_indexed_preview', '1'),
(9673, 824, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9674, 824, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9676, 824, '_elementor_page_settings', 'a:0:{}'),
(9677, 825, '_wp_page_template', 'elementor_header_footer'),
(9678, 825, '_elementor_edit_mode', 'builder'),
(9679, 825, '_elementor_template_type', 'wp-page'),
(9680, 825, '_elementor_version', '4.1.4'),
(9681, 825, '_elementor_pro_version', '4.1.2'),
(9682, 825, '_elementor_global_class_usage_indexed', '1'),
(9683, 825, '_elementor_global_class_usage_indexed_preview', '1'),
(9684, 825, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9685, 825, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9687, 825, '_elementor_page_settings', 'a:0:{}'),
(10830, 911, '_elementor_edit_mode', 'builder'),
(10831, 911, '_elementor_template_type', 'wp-page'),
(9688, 826, '_wp_page_template', 'elementor_header_footer'),
(9689, 826, '_elementor_edit_mode', 'builder'),
(9690, 826, '_elementor_template_type', 'wp-page'),
(9691, 826, '_elementor_version', '4.1.4'),
(9692, 826, '_elementor_pro_version', '4.1.2'),
(9693, 826, '_elementor_global_class_usage_indexed', '1'),
(9694, 826, '_elementor_global_class_usage_indexed_preview', '1'),
(9695, 826, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9696, 826, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9814, 836, '_wp_page_template', 'elementor_header_footer'),
(9702, 827, '_wp_page_template', 'elementor_header_footer'),
(9703, 827, '_elementor_edit_mode', 'builder'),
(9704, 827, '_elementor_template_type', 'wp-page'),
(9705, 827, '_elementor_version', '4.1.4'),
(9706, 827, '_elementor_pro_version', '4.1.2'),
(9707, 827, '_elementor_global_class_usage_indexed', '1'),
(9708, 827, '_elementor_global_class_usage_indexed_preview', '1'),
(9709, 827, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9710, 827, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9772, 833, '_wp_page_template', 'elementor_header_footer'),
(9746, 831, '_wp_page_template', 'elementor_header_footer'),
(9747, 831, '_elementor_edit_mode', 'builder'),
(9748, 831, '_elementor_template_type', 'wp-page'),
(9749, 831, '_elementor_version', '4.1.4'),
(9750, 831, '_elementor_pro_version', '4.1.2'),
(9751, 831, '_elementor_global_class_usage_indexed', '1'),
(9752, 831, '_elementor_global_class_usage_indexed_preview', '1'),
(9753, 831, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9754, 831, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9712, 827, '_elementor_page_settings', 'a:0:{}'),
(9715, 828, '_wp_page_template', 'elementor_header_footer'),
(9716, 828, '_elementor_edit_mode', 'builder'),
(9717, 828, '_elementor_template_type', 'wp-page'),
(9718, 828, '_elementor_version', '4.1.4'),
(9719, 828, '_elementor_pro_version', '4.1.2'),
(9720, 828, '_elementor_global_class_usage_indexed', '1'),
(9721, 828, '_elementor_global_class_usage_indexed_preview', '1'),
(9722, 828, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9723, 828, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9725, 828, '_elementor_page_settings', 'a:0:{}'),
(9728, 829, '_wp_page_template', 'elementor_header_footer'),
(9729, 829, '_elementor_edit_mode', 'builder'),
(9730, 829, '_elementor_template_type', 'wp-page'),
(9731, 829, '_elementor_version', '4.1.4'),
(9732, 829, '_elementor_pro_version', '4.1.2'),
(9733, 829, '_elementor_global_class_usage_indexed', '1'),
(9734, 829, '_elementor_global_class_usage_indexed_preview', '1'),
(9735, 829, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9736, 829, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9815, 836, '_elementor_edit_mode', 'builder'),
(9788, 834, '_wp_page_template', 'elementor_header_footer'),
(9789, 834, '_elementor_edit_mode', 'builder'),
(9790, 834, '_elementor_template_type', 'wp-page'),
(9791, 834, '_elementor_version', '4.1.4'),
(9792, 834, '_elementor_pro_version', '4.1.2'),
(9793, 834, '_elementor_global_class_usage_indexed', '1'),
(9794, 834, '_elementor_global_class_usage_indexed_preview', '1'),
(9795, 834, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9796, 834, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9744, 830, '_wp_attached_file', '2026/07/whole-person-a.webp'),
(9745, 830, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:27:\"2026/07/whole-person-a.webp\";s:8:\"filesize\";i:50518;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"whole-person-a-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13164;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"whole-person-a-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5462;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"whole-person-a-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:46578;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(9756, 831, '_elementor_page_settings', 'a:0:{}'),
(9759, 832, '_wp_page_template', 'elementor_header_footer'),
(9760, 832, '_elementor_edit_mode', 'builder'),
(9761, 832, '_elementor_template_type', 'wp-page'),
(9762, 832, '_elementor_version', '4.1.4'),
(9763, 832, '_elementor_pro_version', '4.1.2'),
(9764, 832, '_elementor_global_class_usage_indexed', '1'),
(9765, 832, '_elementor_global_class_usage_indexed_preview', '1'),
(9766, 832, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9767, 832, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9769, 832, '_elementor_page_settings', 'a:0:{}'),
(9773, 833, '_elementor_edit_mode', 'builder'),
(9774, 833, '_elementor_template_type', 'wp-page'),
(9775, 833, '_elementor_version', '4.1.4'),
(9776, 833, '_elementor_pro_version', '4.1.2'),
(9777, 833, '_elementor_global_class_usage_indexed', '1'),
(9778, 833, '_elementor_global_class_usage_indexed_preview', '1'),
(9779, 833, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9780, 833, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9911, 844, '_wp_page_template', 'elementor_header_footer'),
(9885, 842, '_wp_page_template', 'elementor_header_footer'),
(9886, 842, '_elementor_edit_mode', 'builder'),
(9887, 842, '_elementor_template_type', 'wp-page'),
(9888, 842, '_elementor_version', '4.1.4'),
(9889, 842, '_elementor_pro_version', '4.1.2'),
(9890, 842, '_elementor_global_class_usage_indexed', '1'),
(9891, 842, '_elementor_global_class_usage_indexed_preview', '1'),
(9892, 842, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9893, 842, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9798, 834, '_elementor_page_settings', 'a:0:{}'),
(9801, 835, '_wp_page_template', 'elementor_header_footer'),
(9802, 835, '_elementor_edit_mode', 'builder'),
(9803, 835, '_elementor_template_type', 'wp-page'),
(9804, 835, '_elementor_version', '4.1.4'),
(9805, 835, '_elementor_pro_version', '4.1.2'),
(9806, 835, '_elementor_global_class_usage_indexed', '1'),
(9807, 835, '_elementor_global_class_usage_indexed_preview', '1'),
(9808, 835, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9809, 835, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9811, 835, '_elementor_page_settings', 'a:0:{}'),
(9816, 836, '_elementor_template_type', 'wp-page'),
(9817, 836, '_elementor_version', '4.1.4'),
(9818, 836, '_elementor_pro_version', '4.1.2'),
(9819, 836, '_elementor_global_class_usage_indexed', '1'),
(9820, 836, '_elementor_global_class_usage_indexed_preview', '1'),
(9821, 836, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9822, 836, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10829, 911, '_wp_page_template', 'elementor_header_footer'),
(10061, 854, '_wp_page_template', 'elementor_header_footer'),
(10062, 854, '_elementor_edit_mode', 'builder'),
(10063, 854, '_elementor_template_type', 'wp-page'),
(10064, 854, '_elementor_version', '4.1.4'),
(10065, 854, '_elementor_pro_version', '4.1.2'),
(10066, 854, '_elementor_global_class_usage_indexed', '1'),
(10067, 854, '_elementor_global_class_usage_indexed_preview', '1'),
(10068, 854, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10069, 854, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9870, 840, '_elementor_global_class_usage_indexed', '1'),
(9871, 840, '_elementor_edit_mode', 'builder'),
(9872, 840, '_elementor_template_type', 'wp-page'),
(9873, 840, '_elementor_version', '4.1.4'),
(9874, 840, '_elementor_pro_version', '4.1.2'),
(9875, 840, '_elementor_global_class_usage_indexed_preview', '1'),
(9876, 840, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9877, 840, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9854, 838, '_elementor_page_settings', 'a:0:{}'),
(9856, 839, '_wp_page_template', 'elementor_header_footer'),
(9858, 839, '_elementor_global_class_usage_indexed', '1'),
(9859, 839, '_elementor_edit_mode', 'builder'),
(9860, 839, '_elementor_template_type', 'wp-page'),
(9861, 839, '_elementor_version', '4.1.4'),
(9862, 839, '_elementor_pro_version', '4.1.2'),
(9863, 839, '_elementor_global_class_usage_indexed_preview', '1'),
(9864, 839, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9865, 839, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":141,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-10 08:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/about-top-new.jpg\",\"id\":794,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Caucasian-perso-a.jpg\",\"id\":748,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9866, 839, '_elementor_page_settings', 'a:0:{}'),
(10128, 860, '_wp_page_template', 'elementor_header_footer'),
(10102, 858, '_wp_page_template', 'elementor_header_footer'),
(10104, 858, '_elementor_global_class_usage_indexed', '1'),
(10105, 858, '_elementor_edit_mode', 'builder'),
(10106, 858, '_elementor_template_type', 'wp-page'),
(10107, 858, '_elementor_version', '4.1.4'),
(10108, 858, '_elementor_pro_version', '4.1.2'),
(10109, 858, '_elementor_global_class_usage_indexed_preview', '1'),
(10110, 858, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10111, 858, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9883, 841, '_wp_attached_file', '2026/07/EVERWELL-a.webp'),
(9884, 841, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2026/07/EVERWELL-a.webp\";s:8:\"filesize\";i:205802;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"EVERWELL-a-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16148;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"EVERWELL-a-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6894;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"EVERWELL-a-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:57028;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(9895, 842, '_elementor_page_settings', 'a:0:{}'),
(9898, 843, '_wp_page_template', 'elementor_header_footer'),
(9899, 843, '_elementor_edit_mode', 'builder'),
(9900, 843, '_elementor_template_type', 'wp-page'),
(9901, 843, '_elementor_version', '4.1.4'),
(9902, 843, '_elementor_pro_version', '4.1.2'),
(9903, 843, '_elementor_global_class_usage_indexed', '1'),
(9904, 843, '_elementor_global_class_usage_indexed_preview', '1'),
(9905, 843, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9906, 843, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9908, 843, '_elementor_page_settings', 'a:0:{}'),
(9912, 844, '_elementor_edit_mode', 'builder'),
(9913, 844, '_elementor_template_type', 'wp-page'),
(9914, 844, '_elementor_version', '4.1.4'),
(9915, 844, '_elementor_pro_version', '4.1.2'),
(9916, 844, '_elementor_global_class_usage_indexed', '1'),
(9917, 844, '_elementor_global_class_usage_indexed_preview', '1'),
(9918, 844, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9919, 844, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10172, 864, '_wp_page_template', 'elementor_header_footer'),
(10146, 862, '_wp_page_template', 'elementor_header_footer'),
(10147, 862, '_elementor_edit_mode', 'builder'),
(10148, 862, '_elementor_template_type', 'wp-page'),
(10149, 862, '_elementor_version', '4.1.4'),
(10150, 862, '_elementor_pro_version', '4.1.2'),
(10151, 862, '_elementor_global_class_usage_indexed', '1'),
(10152, 862, '_elementor_global_class_usage_indexed_preview', '1'),
(10153, 862, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10154, 862, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9937, 845, '_elementor_page_settings', 'a:0:{}'),
(9940, 846, '_wp_page_template', 'elementor_header_footer'),
(9942, 846, '_elementor_global_class_usage_indexed', '1'),
(9943, 846, '_elementor_edit_mode', 'builder'),
(9944, 846, '_elementor_template_type', 'wp-page'),
(9945, 846, '_elementor_version', '4.1.4'),
(9946, 846, '_elementor_pro_version', '4.1.2'),
(9947, 846, '_elementor_global_class_usage_indexed_preview', '1'),
(9948, 846, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9949, 846, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-ab.jpg\",\"id\":700,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9950, 846, '_elementor_page_settings', 'a:0:{}'),
(9955, 847, '_elementor_global_class_usage_indexed', '1'),
(9956, 847, '_elementor_edit_mode', 'builder'),
(9957, 847, '_elementor_template_type', 'wp-page'),
(9958, 847, '_elementor_version', '4.1.4'),
(9959, 847, '_elementor_pro_version', '4.1.2'),
(9960, 847, '_elementor_global_class_usage_indexed_preview', '1'),
(9961, 847, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(9962, 847, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10797, 908, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10763, 906, '_wp_page_template', 'elementor_header_footer'),
(10765, 906, '_elementor_global_class_usage_indexed', '1'),
(10766, 906, '_elementor_edit_mode', 'builder'),
(10767, 906, '_elementor_template_type', 'wp-page'),
(10768, 906, '_elementor_version', '4.1.4'),
(10769, 906, '_elementor_pro_version', '4.1.2'),
(10770, 906, '_elementor_global_class_usage_indexed_preview', '1'),
(10771, 906, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10772, 906, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9979, 848, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9982, 848, '_elementor_screenshot_failed', '2026-07-06 11:28:39'),
(10000, 377, '_elementor_page_settings', 'a:0:{}'),
(10001, 377, '_elementor_controls_usage', 'a:6:{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:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:6;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i: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:6;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:3;s:14:\"flex_direction\";i:3;s:20:\"flex_justify_content\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:4:{s:24:\"icon_self_vertical_align\";i:2;s:20:\"icon_vertical_offset\";i:2;s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;}s:18:\"section_text_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}}'),
(9997, 849, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10004, 377, '_elementor_screenshot_failed', '2026-07-08 11:14:42'),
(10015, 850, '_elementor_page_settings', 'a:0:{}'),
(10018, 851, '_wp_page_template', 'default'),
(10020, 851, '_elementor_global_class_usage_indexed', '1'),
(10021, 851, '_elementor_edit_mode', 'builder'),
(10022, 851, '_elementor_template_type', 'wp-page'),
(10023, 851, '_elementor_version', '4.1.4'),
(10024, 851, '_elementor_pro_version', '4.1.2'),
(10025, 851, '_elementor_global_class_usage_indexed_preview', '1'),
(10026, 851, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10027, 851, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10028, 851, '_elementor_page_settings', 'a:0:{}'),
(10031, 852, '_wp_page_template', 'default'),
(10033, 852, '_elementor_global_class_usage_indexed', '1'),
(10034, 852, '_elementor_edit_mode', 'builder'),
(10035, 852, '_elementor_template_type', 'wp-page'),
(10036, 852, '_elementor_version', '4.1.4'),
(10037, 852, '_elementor_pro_version', '4.1.2'),
(10038, 852, '_elementor_global_class_usage_indexed_preview', '1'),
(10039, 852, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10040, 852, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $99\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d5be8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10957, 920, '_wp_page_template', 'default'),
(10931, 918, '_wp_page_template', 'default'),
(10933, 918, '_elementor_global_class_usage_indexed', '1'),
(10934, 918, '_elementor_edit_mode', 'builder'),
(10935, 918, '_elementor_template_type', 'wp-page'),
(10936, 918, '_elementor_version', '4.1.4'),
(10937, 918, '_elementor_pro_version', '4.1.2'),
(10938, 918, '_elementor_global_class_usage_indexed_preview', '1'),
(10939, 918, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10940, 918, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $99\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbdee36\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10088, 856, '_elementor_version', '4.1.4'),
(10089, 856, '_elementor_pro_version', '4.1.2'),
(10090, 856, '_elementor_global_class_usage_indexed', '1'),
(10091, 856, '_elementor_global_class_usage_indexed_preview', '1'),
(10092, 856, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10093, 856, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10085, 856, '_wp_page_template', 'elementor_header_footer'),
(10086, 856, '_elementor_edit_mode', 'builder'),
(10087, 856, '_elementor_template_type', 'wp-page'),
(10071, 854, '_elementor_page_settings', 'a:0:{}'),
(10073, 855, '_wp_page_template', 'elementor_header_footer'),
(10074, 855, '_elementor_edit_mode', 'builder'),
(10075, 855, '_elementor_template_type', 'wp-page'),
(10076, 855, '_elementor_version', '4.1.4'),
(10077, 855, '_elementor_pro_version', '4.1.2'),
(10078, 855, '_elementor_global_class_usage_indexed', '1'),
(10079, 855, '_elementor_global_class_usage_indexed_preview', '1'),
(10080, 855, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10081, 855, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"center\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10083, 855, '_elementor_page_settings', 'a:0:{}'),
(10397, 880, '_wp_page_template', 'elementor_header_footer'),
(10371, 878, '_wp_page_template', 'elementor_header_footer'),
(10372, 878, '_elementor_edit_mode', 'builder'),
(10373, 878, '_elementor_template_type', 'wp-page'),
(10374, 878, '_elementor_version', '4.1.4'),
(10375, 878, '_elementor_pro_version', '4.1.2'),
(10376, 878, '_elementor_global_class_usage_indexed', '1'),
(10377, 878, '_elementor_global_class_usage_indexed_preview', '1'),
(10378, 878, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10379, 878, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10100, 857, '_wp_attached_file', '2026/07/Our-Mission-young-ab.jpg'),
(10101, 857, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:32:\"2026/07/Our-Mission-young-ab.jpg\";s:8:\"filesize\";i:76330;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Our-Mission-young-ab-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15428;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Our-Mission-young-ab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Our-Mission-young-ab-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68415;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(10112, 858, '_elementor_page_settings', 'a:0:{}'),
(10115, 859, '_wp_page_template', 'elementor_header_footer'),
(10117, 859, '_elementor_global_class_usage_indexed', '1'),
(10118, 859, '_elementor_edit_mode', 'builder'),
(10119, 859, '_elementor_template_type', 'wp-page'),
(10120, 859, '_elementor_version', '4.1.4'),
(10121, 859, '_elementor_pro_version', '4.1.2'),
(10122, 859, '_elementor_global_class_usage_indexed_preview', '1'),
(10123, 859, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10124, 859, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-av.jpg\",\"id\":719,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10125, 859, '_elementor_page_settings', 'a:0:{}'),
(10130, 860, '_elementor_global_class_usage_indexed', '1'),
(10131, 860, '_elementor_edit_mode', 'builder'),
(10132, 860, '_elementor_template_type', 'wp-page'),
(10133, 860, '_elementor_version', '4.1.4'),
(10134, 860, '_elementor_pro_version', '4.1.2'),
(10135, 860, '_elementor_global_class_usage_indexed_preview', '1'),
(10136, 860, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10137, 860, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10917, 917, '_wp_page_template', 'elementor_header_footer'),
(10891, 915, '_wp_page_template', 'elementor_header_footer'),
(10893, 915, '_elementor_global_class_usage_indexed', '1'),
(10894, 915, '_elementor_edit_mode', 'builder'),
(10895, 915, '_elementor_template_type', 'wp-page'),
(10896, 915, '_elementor_version', '4.1.4'),
(10897, 915, '_elementor_pro_version', '4.1.2'),
(10898, 915, '_elementor_global_class_usage_indexed_preview', '1'),
(10899, 915, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10900, 915, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10144, 861, '_wp_attached_file', '2026/07/mental-health-a.webp'),
(10145, 861, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2026/07/mental-health-a.webp\";s:8:\"filesize\";i:174154;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"mental-health-a-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"mental-health-a-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"mental-health-a-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:44672;}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}s:3:\"alt\";s:0:\"\";}}'),
(10156, 862, '_elementor_page_settings', 'a:0:{}'),
(10159, 863, '_wp_page_template', 'elementor_header_footer'),
(10160, 863, '_elementor_edit_mode', 'builder'),
(10161, 863, '_elementor_template_type', 'wp-page'),
(10162, 863, '_elementor_version', '4.1.4'),
(10163, 863, '_elementor_pro_version', '4.1.2'),
(10164, 863, '_elementor_global_class_usage_indexed', '1'),
(10165, 863, '_elementor_global_class_usage_indexed_preview', '1'),
(10166, 863, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10167, 863, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10169, 863, '_elementor_page_settings', 'a:0:{}'),
(10173, 864, '_elementor_edit_mode', 'builder'),
(10174, 864, '_elementor_template_type', 'wp-page'),
(10175, 864, '_elementor_version', '4.1.4'),
(10176, 864, '_elementor_pro_version', '4.1.2'),
(10177, 864, '_elementor_global_class_usage_indexed', '1'),
(10178, 864, '_elementor_global_class_usage_indexed_preview', '1'),
(10179, 864, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10180, 864, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10439, 883, '_wp_page_template', 'elementor_header_footer'),
(10413, 881, '_wp_page_template', 'elementor_header_footer'),
(10414, 881, '_elementor_edit_mode', 'builder'),
(10415, 881, '_elementor_template_type', 'wp-page'),
(10416, 881, '_elementor_version', '4.1.4'),
(10417, 881, '_elementor_pro_version', '4.1.2'),
(10418, 881, '_elementor_global_class_usage_indexed', '1'),
(10419, 881, '_elementor_global_class_usage_indexed_preview', '1'),
(10420, 881, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10421, 881, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10198, 865, '_elementor_page_settings', 'a:0:{}'),
(10201, 866, '_wp_page_template', 'default'),
(10203, 866, '_elementor_global_class_usage_indexed', '1'),
(10204, 866, '_elementor_edit_mode', 'builder'),
(10205, 866, '_elementor_template_type', 'wp-page'),
(10206, 866, '_elementor_version', '4.1.4'),
(10207, 866, '_elementor_pro_version', '4.1.2'),
(10208, 866, '_elementor_global_class_usage_indexed_preview', '1'),
(10209, 866, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10210, 866, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10211, 866, '_elementor_page_settings', 'a:0:{}'),
(10216, 867, '_elementor_global_class_usage_indexed', '1'),
(10217, 867, '_elementor_edit_mode', 'builder'),
(10218, 867, '_elementor_template_type', 'wp-page'),
(10219, 867, '_elementor_version', '4.1.4'),
(10220, 867, '_elementor_pro_version', '4.1.2'),
(10221, 867, '_elementor_global_class_usage_indexed_preview', '1'),
(10222, 867, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10223, 867, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(11070, 16, '_elementor_page_settings', 'a:0:{}'),
(11071, 16, '_elementor_controls_usage', 'a:3:{s:9:\"image-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:13:\"section_image\";a:4:{s:5:\"image\";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:1:{s:18:\"title_bottom_space\";i:5;}s:19:\"section_style_image\";a:5:{s:10:\"image_size\";i:5;s:19:\"image_border_radius\";i:5;s:19:\"image_border_border\";i:5;s:18:\"image_border_width\";i:5;s:18:\"image_border_color\";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:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:5;s:4:\"link\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:5;s:16:\"background_color\";i:5;s:13:\"border_border\";i:5;s:12:\"border_width\";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:7;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:6;s:5:\"width\";i:5;s:20:\"flex_justify_content\";i:6;s:14:\"flex_direction\";i:1;s:9:\"flex_wrap\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:1:{s:21:\"background_background\";i:6;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:14:\"section_border\";a:3:{s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;s:13:\"border_radius\";i:5;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:3:{s:7:\"padding\";i:6;s:6:\"margin\";i:5;s:11:\"css_classes\";i:6;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:5;}}}}}'),
(10240, 868, '_elementor_page_settings', 'a:0:{}'),
(10243, 869, '_wp_page_template', 'default'),
(10245, 869, '_elementor_global_class_usage_indexed', '1'),
(10246, 869, '_elementor_edit_mode', 'builder'),
(10247, 869, '_elementor_template_type', 'wp-page'),
(10248, 869, '_elementor_version', '4.1.4'),
(10249, 869, '_elementor_pro_version', '4.1.2'),
(10250, 869, '_elementor_global_class_usage_indexed_preview', '1'),
(10251, 869, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10252, 869, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-healt-a.jpg\",\"id\":755,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10253, 869, '_elementor_page_settings', 'a:0:{}'),
(10258, 870, '_elementor_global_class_usage_indexed', '1'),
(10259, 870, '_elementor_edit_mode', 'builder'),
(10260, 870, '_elementor_template_type', 'wp-page'),
(10261, 870, '_elementor_version', '4.1.4'),
(10262, 870, '_elementor_pro_version', '4.1.2'),
(10263, 870, '_elementor_global_class_usage_indexed_preview', '1'),
(10264, 870, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10265, 870, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10517, 889, '_wp_page_template', 'default'),
(10493, 887, '_elementor_global_class_usage_indexed', '1'),
(10494, 887, '_elementor_edit_mode', 'builder'),
(10495, 887, '_elementor_template_type', 'wp-page'),
(10496, 887, '_elementor_version', '4.1.4'),
(10497, 887, '_elementor_pro_version', '4.1.2'),
(10498, 887, '_elementor_global_class_usage_indexed_preview', '1'),
(10499, 887, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10500, 887, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b36888\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10282, 871, '_elementor_page_settings', 'a:0:{}'),
(10285, 872, '_wp_page_template', 'default'),
(10287, 872, '_elementor_global_class_usage_indexed', '1'),
(10288, 872, '_elementor_edit_mode', 'builder'),
(10289, 872, '_elementor_template_type', 'wp-page'),
(10290, 872, '_elementor_version', '4.1.4'),
(10291, 872, '_elementor_pro_version', '4.1.2'),
(10292, 872, '_elementor_global_class_usage_indexed_preview', '1'),
(10293, 872, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10294, 872, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10295, 872, '_elementor_page_settings', 'a:0:{}'),
(10298, 873, '_wp_page_template', 'default'),
(10300, 873, '_elementor_global_class_usage_indexed', '1'),
(10301, 873, '_elementor_edit_mode', 'builder'),
(10302, 873, '_elementor_template_type', 'wp-page'),
(10303, 873, '_elementor_version', '4.1.4'),
(10304, 873, '_elementor_pro_version', '4.1.2'),
(10305, 873, '_elementor_global_class_usage_indexed_preview', '1'),
(10306, 873, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10307, 873, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b36888\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10335, 875, '_elementor_page_settings', 'a:0:{}'),
(10562, 892, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11115, 18, '_elementor_element_cache', '{\"timeout\":1783728579,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-215962d e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"215962d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-30e11c9 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"30e11c9\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-80a46a7 elementor-widget elementor-widget-image\\\" data-id=\\\"80a46a7\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\\\" class=\\\"attachment-full size-full wp-image-861\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-e651ea5 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"e651ea5\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4c44118 elementor-widget elementor-widget-heading\\\" data-id=\\\"4c44118\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Women\\u2019s Mental Wellness<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjNiMDIyYTIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5TdXBwb3J0aW5nIHdvbWVuIHRocm91Z2ggZXZlcnkgc3RhZ2Ugb2YgbGlmZS48XC9wPjxwPkNvbXBhc3Npb25hdGUsIGV2aWRlbmNlLWJhc2VkIGNhcmUgZGVzaWduZWQgdG8gaGVscCB5b3UgZmVlbCB5b3VyIGJlc3RcdTIwMTRtZW50YWxseSwgZW1vdGlvbmFsbHksIGFuZCBwaHlzaWNhbGx5LjxcL3A+PHVsIHN0eWxlPVwibWFyZ2luLWxlZnQ6IDE4cHg7XCI+PGxpPkFueGlldHk8XC9saT48bGk+RGVwcmVzc2lvbjxcL2xpPjxsaT5QTUREIChQcmVtZW5zdHJ1YWwgRHlzcGhvcmljIERpc29yZGVyKTxcL2xpPjxsaT5BREhEPFwvbGk+PGxpPkJ1cm5vdXQ8XC9saT48bGk+U3RyZXNzIE1hbmFnZW1lbnQ8XC9saT48bGk+U2xlZXAgT3B0aW1pemF0aW9uPFwvbGk+PGxpPlNURCBUZXN0aW5nPFwvbGk+PFwvdWw+PHA+UGVyc29uYWxpemVkIGNhcmUgdG8gaGVscCB5b3UgcmVzdG9yZSBiYWxhbmNlLCBidWlsZCByZXNpbGllbmNlLCBhbmQgdGhyaXZlLjxcL3A+IiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI5MTkzY2MyIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-3b36888 elementor-widget elementor-widget-button\\\" data-id=\\\"3b36888\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Book Now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-ad7f472 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"ad7f472\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-3ea7c59 e-con-full e-flex e-con e-child\\\" data-id=\\\"3ea7c59\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-8aad327 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"8aad327\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-701745c elementor-widget elementor-widget-heading\\\" data-id=\\\"701745c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">\\nGenetic Testing<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjcyYzI2OWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5BdCA8c3Ryb25nPkVWRVJXRUxMIExPTkdFVklUWSAmYW1wOyBXRUxMTkVTUzxcL3N0cm9uZz4sIHdlIHV0aWxpemUgPHN0cm9uZz5HZW5lU2lnaHRcdTAwYWUgR2VuZXRpYyBUZXN0aW5nPFwvc3Ryb25nPiB0byBoZWxwIHBlcnNvbmFsaXplIHBzeWNoaWF0cmljIG1lZGljYXRpb24gc2VsZWN0aW9uIGJhc2VkIG9uIHlvdXIgdW5pcXVlIGdlbmV0aWMgcHJvZmlsZS4gVGhpcyBhZHZhbmNlZCB0ZXN0aW5nIGVuaGFuY2VzIG91ciBhYmlsaXR5IHRvIGFudGljaXBhdGUgaG93IHlvdXIgYm9keSBtYXkgcmVzcG9uZCB0byBjZXJ0YWluIG1lZGljYXRpb25zLCBoZWxwaW5nIHJlZHVjZSB0aGUgdHJpYWwtYW5kLWVycm9yIHByb2Nlc3Mgb2Z0ZW4gYXNzb2NpYXRlZCB3aXRoIGZpbmRpbmcgZWZmZWN0aXZlIHRyZWF0bWVudC48XC9wPjxwPkdlbmVTaWdodFx1MDBhZSB0ZXN0aW5nIG1heSBiZSBiZW5lZmljaWFsIGZvciBpbmRpdmlkdWFscyBiZWluZyB0cmVhdGVkIGZvciA8c3Ryb25nPmRlcHJlc3Npb24sIGFueGlldHksIEFESEQsIFBUU0QsIGFuZCBvdGhlciBtZW50YWwgaGVhbHRoIGNvbmRpdGlvbnM8XC9zdHJvbmc+LiBXaGlsZSB0aGUgdGVzdCBkb2VzIG5vdCBkaWFnbm9zZSBhIGNvbmRpdGlvbiBvciBkZXRlcm1pbmUgdGhlIHNpbmdsZSBcImJlc3RcIiBtZWRpY2F0aW9uLCBpdCBwcm92aWRlcyB2YWx1YWJsZSBpbnNpZ2h0cyB0aGF0IGhlbHAgeW91ciBwcm92aWRlciBtYWtlIG1vcmUgaW5mb3JtZWQgdHJlYXRtZW50IGRlY2lzaW9ucy48XC9wPiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiOTE5M2NjMiJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-7c05d38 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"7c05d38\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-143a352 elementor-widget elementor-widget-image\\\" data-id=\\\"143a352\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\\\" class=\\\"attachment-full size-full wp-image-455\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-5a9ceca e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"5a9ceca\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6ImI3ZWNhYjIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cCBjbGFzcz1cImlzU2VsZWN0ZWRFbmRcIj5UaGUgdGVzdGluZyBwcm9jZXNzIGlzIHF1aWNrLCBzaW1wbGUsIGFuZCBub24taW52YXNpdmUuIEEgcGFpbmxlc3MgY2hlZWsgc3dhYiBpcyBjb2xsZWN0ZWQgZHVyaW5nIHlvdXIgdmlzaXQgYW5kIHNlbnQgdG8gYSBjZXJ0aWZpZWQgbGFib3JhdG9yeSBmb3IgYW5hbHlzaXMuIFlvdXIgcGVyc29uYWxpemVkIHJlc3VsdHMgYXJlIHR5cGljYWxseSBhdmFpbGFibGUgd2l0aGluIDxzdHJvbmc+MVx1MjAxMzIgd2Vla3M8XC9zdHJvbmc+LjxcL3A+PHA+T25jZSB5b3VyIHJlc3VsdHMgYXJlIHJlY2VpdmVkLCB5b3VyIHByb3ZpZGVyIHdpbGwgcmV2aWV3IHlvdXIgR2VuZVNpZ2h0XHUwMGFlIHJlcG9ydCBhbG9uZ3NpZGUgeW91ciBzeW1wdG9tcywgbWVkaWNhbCBoaXN0b3J5LCBhbmQgdHJlYXRtZW50IGdvYWxzLiBUaGUgcmVwb3J0IGhlbHBzIGlkZW50aWZ5IG1lZGljYXRpb25zIHRoYXQgbWF5IGJlIG1vcmUgY29tcGF0aWJsZSB3aXRoIHlvdXIgZ2VuZXRpYyBwcm9maWxlLCBtZWRpY2F0aW9ucyB0aGF0IG1heSByZXF1aXJlIGRvc2UgYWRqdXN0bWVudHMsIGFuZCB0aG9zZSB0aGF0IG1heSBjYXJyeSBhIGhpZ2hlciByaXNrIG9mIHNpZGUgZWZmZWN0c1x1MjAxNGFsbG93aW5nIGZvciBhIG1vcmUgcGVyc29uYWxpemVkIGFwcHJvYWNoIHRvIHlvdXIgbWVudGFsIGhlYWx0aCBjYXJlLjxcL3A+PHVsIHN0eWxlPVwibWFyZ2luLWxlZnQ6IDE4cHg7XCI+PGxpIGRhdGEtc2VjdGlvbi1pZD1cIjEwM3MwNTVcIiBkYXRhLXN0YXJ0PVwiMTUxN1wiIGRhdGEtZW5kPVwiMTU1MlwiPlBlcnNvbmFsaXplZCBtZWRpY2F0aW9uIHNlbGVjdGlvbjxcL2xpPjxsaSBkYXRhLXNlY3Rpb24taWQ9XCIxbWU0cWFsXCIgZGF0YS1zdGFydD1cIjE1NTNcIiBkYXRhLWVuZD1cIjE1NzhcIj5SZWR1Y2VkIHRyaWFsLWFuZC1lcnJvcjxcL2xpPjxsaSBkYXRhLXNlY3Rpb24taWQ9XCJocHF6M3pcIiBkYXRhLXN0YXJ0PVwiMTU3OVwiIGRhdGEtZW5kPVwiMTYzM1wiPkNvbmRpdGlvbnMgdHJlYXRlZCAoZGVwcmVzc2lvbiwgYW54aWV0eSwgQURIRCwgZXRjLik8XC9saT48bGkgZGF0YS1zZWN0aW9uLWlkPVwiMXRxNjVteVwiIGRhdGEtc3RhcnQ9XCIxNjM0XCIgZGF0YS1lbmQ9XCIxNjYxXCI+U2ltcGxlIGNoZWVrIHN3YWIgcHJvY2VzczxcL2xpPjxsaSBkYXRhLXNlY3Rpb24taWQ9XCJmNTR1cnNcIiBkYXRhLXN0YXJ0PVwiMTY2MlwiIGRhdGEtZW5kPVwiMTY4OFwiPlJlc3VsdHMgd2l0aGluIDFcdTIwMTMyIHdlZWtzPFwvbGk+PGxpIGRhdGEtc2VjdGlvbi1pZD1cInp3encwY1wiIGRhdGEtc3RhcnQ9XCIxNjg5XCIgZGF0YS1lbmQ9XCIxNzQ5XCIgZGF0YS1pcy1sYXN0LW5vZGU9XCJcIj5Ib3cgcHJvdmlkZXJzIHVzZSB0aGUgcmVzdWx0cyB0byBndWlkZSB0cmVhdG1lbnQgZGVjaXNpb25zPFwvbGk+PFwvdWw+IiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI0ZDcxYjFmIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(10564, 892, '_elementor_global_class_usage_indexed', '1'),
(10565, 892, '_elementor_edit_mode', 'builder'),
(10566, 892, '_elementor_template_type', 'wp-page'),
(10567, 892, '_elementor_version', '4.1.4'),
(10568, 892, '_elementor_pro_version', '4.1.2'),
(10569, 892, '_elementor_global_class_usage_indexed_preview', '1'),
(10570, 892, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10571, 892, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"846f422\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10586, 893, '_elementor_page_settings', 'a:0:{}'),
(10589, 894, '_wp_page_template', 'default'),
(10591, 894, '_elementor_global_class_usage_indexed', '1'),
(10592, 894, '_elementor_edit_mode', 'builder'),
(10593, 894, '_elementor_template_type', 'wp-page'),
(10594, 894, '_elementor_version', '4.1.4'),
(10595, 894, '_elementor_pro_version', '4.1.2'),
(10596, 894, '_elementor_global_class_usage_indexed_preview', '1'),
(10597, 894, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10598, 894, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $99\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2d5be8d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10338, 876, '_wp_page_template', 'elementor_header_footer'),
(10340, 876, '_elementor_global_class_usage_indexed', '1'),
(10341, 876, '_elementor_edit_mode', 'builder'),
(10342, 876, '_elementor_template_type', 'wp-page'),
(10343, 876, '_elementor_version', '4.1.4'),
(10344, 876, '_elementor_pro_version', '4.1.2'),
(10345, 876, '_elementor_global_class_usage_indexed_preview', '1'),
(10346, 876, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10347, 876, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c21694\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10363, 877, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10366, 877, '_elementor_screenshot_failed', '2026-07-06 11:59:42'),
(10719, 66, '_elementor_page_settings', 'a:0:{}'),
(10720, 66, '_elementor_controls_usage', 'a:6:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:23:\"icon_align_mobile_extra\";i:2;s:10:\"icon_align\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:20:\"flex_justify_content\";i:4;s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:1;s:16:\"flex_align_items\";i:1;s:10:\"min_height\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:7;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:3;s:20:\"e_display_conditions\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:5:{s:23:\"section_style_main_menu\";a:6:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:11:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_width\";i:1;s:22:\"dropdown_divider_color\";i:1;s:35:\"dropdown_box_shadow_box_shadow_type\";i:1;s:30:\"dropdown_box_shadow_box_shadow\";i:1;}s:12:\"style_toggle\";a:4:{s:12:\"toggle_color\";i:1;s:23:\"toggle_background_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:29:\"toggle_background_color_hover\";i:1;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:1;s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_color\";i:1;s:24:\"mobile_sub_link_bg_color\";i:1;s:21:\"mobile_sub_link_color\";i:1;s:17:\"mobile_link_hover\";i:1;s:20:\"mobile_link_bg_hover\";i:1;s:24:\"mobile_sub_link_bg_hover\";i:1;s:21:\"mobile_sub_link_hover\";i:1;s:16:\"close_icon_color\";i:1;s:27:\"close_icon_background_color\";i:1;s:33:\"close_icon_background_color_hover\";i:1;s:22:\"close_icon_color_hover\";i:1;}s:16:\"style_typography\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:13:\"border_radius\";i:1;}}}}s:16:\"theme-page-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),
(10381, 878, '_elementor_page_settings', 'a:0:{}'),
(10384, 879, '_wp_page_template', 'elementor_header_footer'),
(10385, 879, '_elementor_edit_mode', 'builder'),
(10386, 879, '_elementor_template_type', 'wp-page'),
(10387, 879, '_elementor_version', '4.1.4'),
(10388, 879, '_elementor_pro_version', '4.1.2'),
(10389, 879, '_elementor_global_class_usage_indexed', '1'),
(10390, 879, '_elementor_global_class_usage_indexed_preview', '1'),
(10391, 879, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10392, 879, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a Consultation\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_consultation\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10394, 879, '_elementor_page_settings', 'a:0:{}'),
(10398, 880, '_elementor_edit_mode', 'builder'),
(10399, 880, '_elementor_template_type', 'wp-page'),
(10400, 880, '_elementor_version', '4.1.4'),
(10401, 880, '_elementor_pro_version', '4.1.2'),
(10402, 880, '_elementor_global_class_usage_indexed', '1'),
(10403, 880, '_elementor_global_class_usage_indexed_preview', '1'),
(10404, 880, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10405, 880, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11095, 66, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:5:{i:0;s:16:\"widget-icon-list\";i:1;s:12:\"widget-image\";i:2;s:23:\"widget-pp-advanced-menu\";i:3;s:18:\"e-animation-zoomIn\";i:4;s:14:\"widget-heading\";}s:7:\"scripts\";a:4:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:21:\"pp-smartmenu-keyboard\";i:3;s:16:\"pp-advanced-menu\";}}'),
(11096, 377, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:5:{i:0;s:14:\"widget-heading\";i:1;s:14:\"widget-divider\";i:2;s:16:\"widget-icon-list\";i:3;s:19:\"widget-social-icons\";i:4;s:14:\"e-apple-webkit\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(11097, 7, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642100;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11098, 12, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:12:{i:0;s:12:\"widget-image\";i:1;s:22:\"e-animation-fadeInLeft\";i:2;s:14:\"widget-divider\";i:3;s:14:\"widget-heading\";i:4;s:16:\"widget-icon-list\";i:5;s:23:\"e-animation-fadeInRight\";i:6;s:17:\"widget-pp-marquee\";i:7;s:15:\"widget-icon-box\";i:8;s:18:\"e-animation-zoomIn\";i:9;s:16:\"widget-image-box\";i:10;s:20:\"e-animation-fadeInUp\";i:11;s:11:\"widget-form\";}s:7:\"scripts\";a:2:{i:0;s:18:\"elementor-frontend\";i:1;s:10:\"pp-marquee\";}}'),
(11099, 12, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642101;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:10:\"fa-regular\";i:5;s:8:\"fa-solid\";i:17;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11100, 66, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642102;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:10:\"fa-regular\";i:1;s:8:\"fa-solid\";i:3;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:3:{i:0;s:8:\"38b5d957\";i:1;s:8:\"2809bfb4\";i:2;s:8:\"2809bfb4\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11101, 377, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642102;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:2;s:10:\"fa-regular\";i:3;s:9:\"fa-brands\";i:6;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11102, 66, '_elementor_element_cache', '{\"timeout\":1783728502,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-4477db87 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"4477db87\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-7c48ff4c e-flex e-con-boxed e-con e-child\\\" data-id=\\\"7c48ff4c\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5f52a413 elementor-icon-list--layout-inline elementor-list-item-link-inline elementor-mobile_extra-align-center elementor-align-start elementor-widget elementor-widget-icon-list\\\" data-id=\\\"5f52a413\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items elementor-inline-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:Info@everwelllw.org\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Info@everwelllw.org<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-267b5b67 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"267b5b67\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-193f9eb3 elementor-icon-list--layout-inline elementor-list-item-link-inline elementor-align-end elementor-mobile_extra-align-center elementor-widget elementor-widget-icon-list\\\" data-id=\\\"193f9eb3\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items elementor-inline-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:3185064245\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">(318) 506-4245<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-575f8b73 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"575f8b73\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5aad73e0 e-con-full e-flex e-con e-child\\\" data-id=\\\"5aad73e0\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjM4YjVkOTU3IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaW1hZ2UiOnsiaWQiOjUzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9ldmVyd2VsbFwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDdcL0V2ZXJ3ZWxsLUxvbmdldml0eS1XZWxsbmVzcy1sb2dvLnBuZyIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkiLCJzaXplIjoiIn0sImltYWdlX3NpemUiOiJmdWxsIiwibGlua190byI6ImN1c3RvbSIsImFsaWduIjoibGVmdCIsInNwYWNlIjp7InVuaXQiOiJweCIsInNpemUiOjE0NCwic2l6ZXMiOltdfSwic3BhY2VfdGFibGV0Ijp7InVuaXQiOiJweCIsInNpemUiOjExOCwic2l6ZXMiOltdfSwic3BhY2VfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjEyMCwic2l6ZXMiOltdfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI0MDFjOWY3IiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjUtMDgtMzAgMTE6MDcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZHluYW1pY19fIjp7ImxpbmsiOiJbZWxlbWVudG9yLXRhZyBpZD1cIjY0NWVhYzRcIiBuYW1lPVwic2l0ZS11cmxcIiBzZXR0aW5ncz1cIiU3QiU3RFwiXSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiaW1hZ2UifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-394eed43 e-con-full e-flex e-con e-child\\\" data-id=\\\"394eed43\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6ImEzYzc3ZDAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJhbGlnbl9pdGVtcyI6InJpZ2h0IiwicG9pbnRlciI6Im5vbmUiLCJtZW51X3R5cGUiOiJvZmYtY2FudmFzIiwidG9nZ2xlX2xhYmVsIjoiTWVudSIsInRvZ2dsZV9hbGlnbiI6InJpZ2h0IiwiY29sb3JfbWVudV9pdGVtIjoiIzM5MzkzOSIsImNvbG9yX21lbnVfaXRlbV9ob3ZlciI6IiMyOTRjNGUiLCJjb2xvcl9tZW51X2l0ZW1fYWN0aXZlIjoiIzI5NGM0ZSIsInBhZGRpbmdfaG9yaXpvbnRhbF9tZW51X2l0ZW0iOnsidW5pdCI6InB4Iiwic2l6ZSI6MCwic2l6ZXMiOltdfSwicGFkZGluZ192ZXJ0aWNhbF9tZW51X2l0ZW0iOnsidW5pdCI6InB4Iiwic2l6ZSI6NSwic2l6ZXMiOltdfSwibWVudV9zcGFjZV9iZXR3ZWVuIjp7InVuaXQiOiJweCIsInNpemUiOjM1LCJzaXplcyI6W119LCJjb2xvcl9kcm9wZG93bl9pdGVtIjoiI0ZGRkZGRiIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbSI6IiNiZDkwNjYiLCJjb2xvcl9kcm9wZG93bl9pdGVtX2hvdmVyIjoiI0ZGRkZGRiIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6IiMyOTRjNGUiLCJjb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6IiNGRkZGRkYiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1fYWN0aXZlIjoiIzI5NGM0ZSIsInRvZ2dsZV9jb2xvciI6IiMzOTM5MzkiLCJ0b2dnbGVfYmFja2dyb3VuZF9jb2xvciI6IiMwMjAxMDEwMCIsInRvZ2dsZV9jb2xvcl9ob3ZlciI6IiMzOTM5MzkiLCJ0b2dnbGVfYmFja2dyb3VuZF9jb2xvcl9ob3ZlciI6IiMwMjAxMDEwMCIsIm9mZmNhbnZhc19wb3NpdGlvbiI6InJpZ2h0Iiwib3ZlcmxheV9iZ19jb2xvciI6IiNGRkZGRkYiLCJtb2JpbGVfbGlua19jb2xvciI6IiMzOTM5MzkiLCJtb2JpbGVfc3ViX2xpbmtfYmdfY29sb3IiOiIjRkZGRkZGIiwibW9iaWxlX3N1Yl9saW5rX2NvbG9yIjoiIzM5MzkzOSIsIm1vYmlsZV9saW5rX2hvdmVyIjoiI0ZGRkZGRiIsIm1vYmlsZV9saW5rX2JnX2hvdmVyIjoiI2JkOTA2NiIsIm1vYmlsZV9zdWJfbGlua19iZ19ob3ZlciI6IiNiZDkwNjYiLCJtb2JpbGVfc3ViX2xpbmtfaG92ZXIiOiIjRkZGRkZGIiwiY2xvc2VfaWNvbl9jb2xvciI6IiMwMDAwMDAiLCJjbG9zZV9pY29uX2JhY2tncm91bmRfY29sb3IiOiIjMDIwMTAxMDAiLCJjbG9zZV9pY29uX2JhY2tncm91bmRfY29sb3JfaG92ZXIiOiIjMDIwMTAxMDAiLCJtZW51X3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsIm1lbnVfdHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTYsInNpemVzIjpbXX0sIm1lbnVfdHlwb2dyYXBoeV9mb250X3dlaWdodCI6IjQwMCIsImRyb3Bkb3duX3R5cG9ncmFwaHlfdHlwb2dyYXBoeSI6ImN1c3RvbSIsImRyb3Bkb3duX3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjE2LCJzaXplcyI6W119LCJkcm9wZG93bl90eXBvZ3JhcGh5X2ZvbnRfd2VpZ2h0IjoiNDAwIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJkNDFmMjRiIiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjUtMDgtMzAgMTE6MDcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7ImNvbG9yX21lbnVfaXRlbSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjMiLCJjb2xvcl9tZW51X2l0ZW1faG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIiwiY29sb3JfbWVudV9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJjb2xvcl9kcm9wZG93bl9pdGVtIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJjb2xvcl9kcm9wZG93bl9pdGVtX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImJhY2tncm91bmRfY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJjb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1fYWN0aXZlIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMSIsInRvZ2dsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjMiLCJ0b2dnbGVfY29sb3JfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IzIiwib3ZlcmxheV9iZ19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJtb2JpbGVfbGlua19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjMiLCJtb2JpbGVfc3ViX2xpbmtfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwibW9iaWxlX3N1Yl9saW5rX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMyIsIm1vYmlsZV9saW5rX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsIm1vYmlsZV9saW5rX2JnX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsIm1vYmlsZV9zdWJfbGlua19iZ19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJtb2JpbGVfc3ViX2xpbmtfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiY2xvc2VfaWNvbl9jb2xvciI6IiIsImNsb3NlX2ljb25fY29sb3JfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IzIiwiZHJvcGRvd25fZGl2aWRlcl9jb2xvciI6IiJ9LCJkcm9wZG93bl9kaXZpZGVyX2JvcmRlciI6InNvbGlkIiwiZHJvcGRvd25fZGl2aWRlcl93aWR0aCI6eyJ1bml0IjoicHgiLCJzaXplIjoxLCJzaXplcyI6W119LCJfZmxleF9vcmRlcl90YWJsZXRfZXh0cmEiOiJlbmQiLCJkcm9wZG93bl9kaXZpZGVyX2NvbG9yIjoiI0NFOUY3MiIsImNsb3NlX2ljb25fY29sb3JfaG92ZXIiOiIjMzkzOTM5IiwiZHJvcGRvd25fYm94X3NoYWRvd19ib3hfc2hhZG93X3R5cGUiOiJ5ZXMiLCJkcm9wZG93bl9ib3hfc2hhZG93X2JveF9zaGFkb3ciOnsiaG9yaXpvbnRhbCI6MCwidmVydGljYWwiOjAsImJsdXIiOjEwLCJzcHJlYWQiOjAsImNvbG9yIjoicmdiYSgyNTUsIDI1NSwgMjU1LCAwLjEwMTk2MDc4NDMxMzcyNTQ5KSJ9fSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoicHAtYWR2YW5jZWQtbWVudSJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-9726847 elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-button\\\" data-id=\\\"9726847\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Schedule an Appointment<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6Ijc3YmFlYzlhIiwiZWxUeXBlIjoiY29udGFpbmVyIiwic2V0dGluZ3MiOnsiZmxleF9kaXJlY3Rpb24iOiJjb2x1bW4iLCJtaW5faGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjIyNSwic2l6ZXMiOltdfSwibWluX2hlaWdodF90YWJsZXRfZXh0cmEiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAyLCJzaXplcyI6W119LCJtaW5faGVpZ2h0X3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoxOTUsInNpemVzIjpbXX0sImZsZXhfanVzdGlmeV9jb250ZW50IjoiY2VudGVyIiwiYmFja2dyb3VuZF9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsImJhY2tncm91bmRfaW1hZ2UiOnsiaWQiOjM4OSwidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvZXZlcndlbGxcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzA3XC9icmVhZGNydW1iLW1lbnRhbC5qcGciLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJiYWNrZ3JvdW5kX3Bvc2l0aW9uIjoidG9wIGNlbnRlciIsImJhY2tncm91bmRfcmVwZWF0Ijoibm8tcmVwZWF0IiwiYmFja2dyb3VuZF9zaXplIjoiY292ZXIiLCJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvcl9saXN0IjpbeyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNkFEMUYiLCJfaWQiOiI3NzE0ZTNlIn0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNzQ5NkEiLCJfaWQiOiJkYjEzZjU4In0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiM1NjVBRDgiLCJfaWQiOiJkNzlmOTBmIn1dLCJiYWNrZ3JvdW5kX292ZXJsYXlfYmFja2dyb3VuZCI6ImdyYWRpZW50IiwiYmFja2dyb3VuZF9vdmVybGF5X2dyYWRpZW50X2FuZ2xlIjp7InVuaXQiOiJkZWciLCJzaXplIjoyNzIsInNpemVzIjpbXX0sImJhY2tncm91bmRfb3ZlcmxheV9vcGFjaXR5Ijp7InVuaXQiOiJweCIsInNpemUiOjAuOSwic2l6ZXMiOltdfSwicGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMTAiLCJib3R0b20iOiIxMCIsImxlZnQiOiIxMCIsImlzTGlua2VkIjpmYWxzZX0sInBwX2Rpc3BsYXlfY29uZGl0aW9uc19lbmFibGUiOiJ5ZXMiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7InBwX2NvbmRpdGlvbl9rZXkiOiJwYWdlIiwicHBfY29uZGl0aW9uX29wZXJhdG9yIjoibm90IiwiX2lkIjoiYzcwOTVkOSIsInBwX2NvbmRpdGlvbl9wYWdlX3ZhbHVlIjpbIjEwIl0sInBwX2NvbmRpdGlvbl9kYXRlX3ZhbHVlIjoiMjAyNS0wOC0yNCB0byAyMDI1LTA4LTMwIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI1LTA4LTMwIDExOjA3In1dLCJfX2dsb2JhbHNfXyI6eyJiYWNrZ3JvdW5kX292ZXJsYXlfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwiYmFja2dyb3VuZF9vdmVybGF5X2NvbG9yX2IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIn0sImVfZGlzcGxheV9jb25kaXRpb25zIjpbIltbe1wiY29uZGl0aW9uXCI6XCJwYWdlX3RpdGxlXCIsXCJjb21wYXJhdG9yXCI6XCJpc19ub3RcIixcInRpdGxlc1wiOlt7XCJpZFwiOjEyLFwidGV4dFwiOlwiSG9tZVwifV19XV0iXSwibWluX2hlaWdodF9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTMyLCJzaXplcyI6W119fSwiZWxlbWVudHMiOlt7ImlkIjoiMjgwOWJmYjQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJfX2R5bmFtaWNfXyI6eyJ0aXRsZSI6IltlbGVtZW50b3ItdGFnIGlkPVwiXCIgbmFtZT1cInBhZ2UtdGl0bGVcIiBzZXR0aW5ncz1cIiU3QiUyMmluY2x1ZGVfY29udGV4dCUyMiUzQSUyMiUyMiUyQyUyMnNob3dfaG9tZV90aXRsZSUyMiUzQSUyMiUyMiUyQyUyMmJlZm9yZSUyMiUzQSUyMiUyMiUyQyUyMmFmdGVyJTIyJTNBJTIyJTIyJTJDJTIyZmFsbGJhY2slMjIlM0ElMjIlMjIlN0RcIl0ifSwidGl0bGUiOiJBZGQgWW91ciBIZWFkaW5nIFRleHQgSGVyZSIsImFsaWduIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiIyNDVmOTRiIiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjUtMDgtMzAgMTE6MDcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9hbmltYXRpb24iOiJ6b29tSW4iLCJfX2dsb2JhbHNfXyI6eyJ0aXRsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRoZW1lLXBhZ2UtdGl0bGUifV0sImlzSW5uZXIiOmZhbHNlfQ==\\\"]\",\"scripts\":[],\"styles\":[]}}'),
(11103, 618, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>'),
(11104, 634, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11105, 12, '_elementor_element_cache', '{\"timeout\":1783728502,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-236c3e1 banner_sections e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"236c3e1\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-4d83e33 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"4d83e33\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-85011d7 elementor-widget elementor-widget-image\\\" data-id=\\\"85011d7\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1165\\\" height=\\\"1300\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\\\" class=\\\"attachment-full size-full wp-image-811\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-969f6b3 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"969f6b3\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-103fbe6 elementor-widget-divider--view-line_text elementor-widget-divider--element-align-center elementor-widget elementor-widget-divider\\\" data-id=\\\"103fbe6\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-divider__text elementor-divider__element\\\">\\n\\t\\t\\t\\tWelcome \\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7c9172c elementor-widget elementor-widget-heading\\\" data-id=\\\"7c9172c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h1 class=\\\"elementor-heading-title elementor-size-default\\\">Live Well. Age Well.<\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-485bc7d elementor-icon-list--layout-inline elementor-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"485bc7d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items elementor-inline-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Wellness<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-star\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Mind <\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-star\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Metabolism <\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-star\\\" viewBox=\\\"0 0 576 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Longevity<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjNhMDQ2MjUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJDb21wYXNzaW9uYXRlLCBwZXJzb25hbGl6ZWQgY2FyZSBzdXBwb3J0aW5nIGxpZmVsb25nIGhlYWx0aCwgd2VsbG5lc3MsIGFuZCB2aXRhbGl0eS4iLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiOWVkZGMzNSIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNi0wNy0wOCAxMToyMyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsidGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifSwidHlwb2dyYXBoeV90eXBvZ3JhcGh5IjoiY3VzdG9tIiwidHlwb2dyYXBoeV9mb250X3NpemUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTgsInNpemVzIjpbXX0sInR5cG9ncmFwaHlfZm9udF9zaXplX21vYmlsZV9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNiwic2l6ZXMiOltdfSwidHlwb2dyYXBoeV9mb250X3NpemVfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOjE0LCJzaXplcyI6W119LCJ0eXBvZ3JhcGh5X2ZvbnRfc2l6ZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTYsInNpemVzIjpbXX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-3bd4b15 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"3bd4b15\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"#schedule_appointment\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Schedule an Appointment<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-9d178ad e-con-full e-flex e-con e-parent\\\" data-id=\\\"9d178ad\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-12ca8a8 elementor-widget elementor-widget-pp-marquee\\\" data-id=\\\"12ca8a8\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"pp-marquee.default\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-widget-container\\\">\\n\\t\\t\\t\\t\\t\\n\\t\\t<div class=\\\"pp-marquee pp-marquee-12ca8a8\\\" data-v-direction=\\\"\\\" data-viewport-offset=\\\"0.01\\\" data-slow-factor=\\\"1\\\" style=\\\"--direction: 1; --pause-on-hover: true;\\\">\\n\\t\\t\\t<div class=\\\"pp-marquee-animation\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-marquee-item elementor-repeater-item-00141bd\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"pp-marquee-fields pp-marquee-url\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\\\">\\t\\t<span class=\\\"pp-marquee-content pp-marquee-text\\\">Why are you exhausted?<\\/span>\\n\\t\\t<\\/a>\\t\\t<span class=\\\"pp-marquee-separator pp-icon\\\">\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-star-of-life\\\" viewBox=\\\"0 0 480 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\\\"><\\/path><\\/svg>\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-marquee-item elementor-repeater-item-92e5014\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"pp-marquee-fields pp-marquee-url\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\\\">\\t\\t<span class=\\\"pp-marquee-content pp-marquee-text\\\">Why is your weight changing?\\n\\n<\\/span>\\n\\t\\t<\\/a>\\t\\t<span class=\\\"pp-marquee-separator pp-icon\\\">\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-star-of-life\\\" viewBox=\\\"0 0 480 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\\\"><\\/path><\\/svg>\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-marquee-item elementor-repeater-item-901f390\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"pp-marquee-fields pp-marquee-url\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\\\">\\t\\t<span class=\\\"pp-marquee-content pp-marquee-text\\\">Why has your mood changed?<\\/span>\\n\\t\\t<\\/a>\\t\\t<span class=\\\"pp-marquee-separator pp-icon\\\">\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-star-of-life\\\" viewBox=\\\"0 0 480 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\\\"><\\/path><\\/svg>\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-marquee-item elementor-repeater-item-81ffca8\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"pp-marquee-fields pp-marquee-url\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\\\">\\t\\t<span class=\\\"pp-marquee-content pp-marquee-text\\\">Why aren\\u2019t you sleeping?<\\/span>\\n\\t\\t<\\/a>\\t\\t<span class=\\\"pp-marquee-separator pp-icon\\\">\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-star-of-life\\\" viewBox=\\\"0 0 480 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\\\"><\\/path><\\/svg>\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-marquee-item elementor-repeater-item-bb54c30\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"pp-marquee-fields pp-marquee-url\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\\\">\\t\\t<span class=\\\"pp-marquee-content pp-marquee-text\\\">Why has your metabolism slowed?<\\/span>\\n\\t\\t<\\/a>\\t\\t<span class=\\\"pp-marquee-separator pp-icon\\\">\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-star-of-life\\\" viewBox=\\\"0 0 480 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\\\"><\\/path><\\/svg>\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"pp-marquee-item elementor-repeater-item-becacc9\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"pp-marquee-fields pp-marquee-url\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\\\">\\t\\t<span class=\\\"pp-marquee-content pp-marquee-text\\\">Why don&#039;t you feel like yourself anymore?<\\/span>\\n\\t\\t<\\/a>\\t\\t<span class=\\\"pp-marquee-separator pp-icon\\\">\\n\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-star-of-life\\\" viewBox=\\\"0 0 480 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\\\"><\\/path><\\/svg>\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t<\\/div>\\n\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-538c4e6 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"538c4e6\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-f391f39 e-con-full e-flex e-con e-child\\\" data-id=\\\"f391f39\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-b04899b e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"b04899b\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8398f7d elementor-widget elementor-widget-heading\\\" data-id=\\\"8398f7d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">About Us<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjIzYWQyMWMiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5FVkVSV0VMTCBMT05HRVZJVFkgJmFtcDsgV0VMTE5FU1MgcHJvdmlkZXJzIGFyZSBwYXNzaW9uYXRlIGFib3V0IHByb3ZpZGluZyB3aG9sZS1wZXJzb24sIGNvbXBhc3Npb25hdGUgY2FyZSBhbmQgbWVldGluZyBlYWNoIGluZGl2aWR1YWwgd2hlcmUgdGhleSBhcmUgb24gdGhlaXIgaGVhbHRoIGpvdXJuZXkuIFdpdGggY29tYmluZWQgZXhwZXJpZW5jZSBpbiBBZHVsdCBwcmltYXJ5IGNhcmUsIG1lbnRhbCBoZWFsdGgsIHdvbWVuXHUyMDE5cyBoZWFsdGgsIGFuZCBwZWRpYXRyaWNzLCB3ZSBwcm92aWRlIGNvbXByZWhlbnNpdmUsIGV2aWRlbmNlLWJhc2VkIGNhcmUgYWNyb3NzIHRoZSBsaWZlc3Bhbi48XC9wPjxwPk91ciBhcHByb2FjaCBnb2VzIGJleW9uZCB0cmVhdGluZyBzeW1wdG9tcyB3ZSBmb2N1cyBvbiBidWlsZGluZyBtZWFuaW5nZnVsIHJlbGF0aW9uc2hpcHMsIHByb21vdGluZyBwcmV2ZW50aW9uLCBhbmQgY3JlYXRpbmcgcGVyc29uYWxpemVkIHRyZWF0bWVudCBwbGFucyB0aGF0IHN1cHBvcnQgbG9uZy10ZXJtIGhlYWx0aCBhbmQgd2VsbG5lc3MuPFwvcD4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjJmOTM5YzQifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]<div class=\\\"elementor-element elementor-element-f35ab0c e-con-full e-flex e-con e-child\\\" data-id=\\\"f35ab0c\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f155255 elementor-widget__width-initial elementor-hidden-mobile_extra elementor-hidden-mobile elementor-widget elementor-widget-image\\\" data-id=\\\"f155255\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"667\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\\\" class=\\\"attachment-full size-full wp-image-708\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-20c1f83 elementor-widget__width-initial elementor-widget elementor-widget-icon-box\\\" data-id=\\\"20c1f83\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tOur Mission\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tAt EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0a40032 elementor-widget elementor-widget-button\\\" data-id=\\\"0a40032\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-44ea20b e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"44ea20b\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1f87d29 elementor-widget elementor-widget-image\\\" data-id=\\\"1f87d29\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\\\" class=\\\"attachment-full size-full wp-image-841\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-772a093 elementor-widget elementor-widget-image\\\" data-id=\\\"772a093\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\\\" class=\\\"attachment-full size-full wp-image-830\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-465d29f e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"465d29f\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-e30abbf e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"e30abbf\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-907d1ff elementor-widget elementor-widget-heading\\\" data-id=\\\"907d1ff\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Your Journey to Better Health Begins Today<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjdhNzkyMzAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJSZWFkeSB0byBzdGFydCB5b3VyIHdlbGxuZXNzIGpvdXJuZXk\\/IENvbnRhY3Qgb3VyIGNvbXBhc3Npb25hdGUgdGVhbSB0b2RheSBmb3IgcGVyc29uYWxpemVkIGNhcmUsIGV4cGVydCBndWlkYW5jZSwgYW5kIGxhc3RpbmcgaGVhbHRoIHNvbHV0aW9ucy4iLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiOGY3NDIyYyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsidGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-2e3b4c2 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"2e3b4c2\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Contact Us<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-75a3b3a services_sections e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"75a3b3a\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-ce05f99 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"ce05f99\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-05c9c71 elementor-widget elementor-widget-heading\\\" data-id=\\\"05c9c71\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Our Services<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-427f275 e-con-full elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con e-child\\\" data-id=\\\"427f275\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-c302264 e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"c302264\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-292ec4d elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"292ec4d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\\\" class=\\\"attachment-full size-full wp-image-230\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Women\\u2019s Mental Wellness<\\/h5><p class=\\\"elementor-image-box-description\\\">Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6339aa0 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"6339aa0\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-87a0f6e e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"87a0f6e\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-413cda3 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"413cda3\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\\\" class=\\\"attachment-full size-full wp-image-243\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"> Longevity + Regenerative Aesthetics<\\/h5><p class=\\\"elementor-image-box-description\\\">Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,<\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-68d749a elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"68d749a\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-b146815 e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"b146815\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-63a5000 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"63a5000\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\\\" class=\\\"attachment-full size-full wp-image-250\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Weight Optimization<\\/h5><p class=\\\"elementor-image-box-description\\\">Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, <\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ee6ecc7 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"ee6ecc7\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-06e2e3c e-con-full e-flex e-con e-child\\\" data-id=\\\"06e2e3c\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-b7c8023 e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"b7c8023\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f20a827 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"f20a827\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\\\" class=\\\"attachment-full size-full wp-image-861\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Women\\u2019s Mental Wellness<\\/h5><p class=\\\"elementor-image-box-description\\\">Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1257302 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"1257302\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-34e5cf2 e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"34e5cf2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a8923b0 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"a8923b0\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\\\" class=\\\"attachment-full size-full wp-image-561\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"> Longevity + Regenerative Aesthetics<\\/h5><p class=\\\"elementor-image-box-description\\\">Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,<\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ea57c52 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"ea57c52\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-944aaee e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"944aaee\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6ec0a16 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"6ec0a16\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\\\" class=\\\"attachment-full size-full wp-image-660\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Weight Optimization<\\/h5><p class=\\\"elementor-image-box-description\\\">Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, <\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0d35f95 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"0d35f95\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-2958f94 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"2958f94\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c9e4990 elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"c9e4990\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">View All Service<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-56301781 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"56301781\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" id=\\\"schedule_appointment\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-603181d9 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"603181d9\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-46a1bca5 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"46a1bca5\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-24646a31 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"24646a31\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-23b9ccd0 elementor-widget elementor-widget-heading\\\" data-id=\\\"23b9ccd0\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h3 class=\\\"elementor-heading-title elementor-size-default\\\">Schedule an Appointment<\\/h3>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3ef67ef1 elementor-button-align-stretch elementor-widget elementor-widget-form\\\" data-id=\\\"3ef67ef1\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-settings=\\\"{&quot;step_next_label&quot;:&quot;Next&quot;,&quot;step_previous_label&quot;:&quot;Previous&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\\\" data-widget_type=\\\"form.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<form class=\\\"elementor-form\\\" method=\\\"post\\\" name=\\\"Schedule an Appointment\\\" aria-label=\\\"Schedule an Appointment\\\">\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"post_id\\\" value=\\\"12\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"form_id\\\" value=\\\"3ef67ef1\\\"\\/>\\n\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"referer_title\\\" value=\\\"\\\" \\/>\\n\\n\\t\\t\\t\\t\\t\\t\\t<input type=\\\"hidden\\\" name=\\\"queried_id\\\" value=\\\"12\\\"\\/>\\n\\t\\t\\t\\n\\t\\t\\t<div class=\\\"elementor-form-fields-wrapper elementor-labels-\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-name\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tFirst Name\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[name]\\\" id=\\\"form-field-name\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"First Name\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_b94c01e elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_b94c01e\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tLast Name\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[field_b94c01e]\\\" id=\\\"form-field-field_b94c01e\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"Last Name\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-tel elementor-field-group elementor-column elementor-field-group-email elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-email\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tPhone Number \\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"tel\\\" name=\\\"form_fields[email]\\\" id=\\\"form-field-email\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"Phone Number \\\" required=\\\"required\\\" pattern=\\\"[0-9()#&amp;+*-=.]+\\\" title=\\\"Only numbers and phone characters (#, -, *, etc) are accepted.\\\">\\n\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-field_cc1facf elementor-col-50 elementor-field-required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_cc1facf\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tEmail\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"email\\\" name=\\\"form_fields[field_cc1facf]\\\" id=\\\"form-field-field_cc1facf\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"Email Address\\\" required=\\\"required\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-field_5b082cb elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_5b082cb\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tReason for Inquiry\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<input size=\\\"1\\\" type=\\\"text\\\" name=\\\"form_fields[field_5b082cb]\\\" id=\\\"form-field-field_5b082cb\\\" class=\\\"elementor-field elementor-size-lg  elementor-field-textual\\\" placeholder=\\\"Reason for Inquiry\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-field_a0137c6 elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_a0137c6\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tPrevious Medical Diagnosis\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t<textarea class=\\\"elementor-field-textual elementor-field  elementor-size-lg\\\" name=\\\"form_fields[field_a0137c6]\\\" id=\\\"form-field-field_a0137c6\\\" rows=\\\"3\\\" placeholder=\\\"Previous Medical Diagnosis\\\"><\\/textarea>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-field_6307801 elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-field_6307801\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tCurrent Medications\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t<textarea class=\\\"elementor-field-textual elementor-field  elementor-size-lg\\\" name=\\\"form_fields[field_6307801]\\\" id=\\\"form-field-field_6307801\\\" rows=\\\"3\\\" placeholder=\\\"Current Medications\\\"><\\/textarea>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<label for=\\\"form-field-message\\\" class=\\\"elementor-field-label elementor-screen-only\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\tMessage\\t\\t\\t\\t\\t\\t\\t<\\/label>\\n\\t\\t\\t\\t\\t\\t<textarea class=\\\"elementor-field-textual elementor-field  elementor-size-lg\\\" name=\\\"form_fields[message]\\\" id=\\\"form-field-message\\\" rows=\\\"5\\\" placeholder=\\\"Message\\\"><\\/textarea>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\\\">\\n\\t\\t\\t\\t\\t<button class=\\\"elementor-button elementor-size-md\\\" type=\\\"submit\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Submit<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/button>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t<\\/div>\\n\\t\\t<\\/form>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c330c31 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"c330c31\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-4f7bfc4 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"4f7bfc4\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-01e654c elementor-widget elementor-widget-heading\\\" data-id=\\\"01e654c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Flexible Payment Options<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6ImQzYWQyZTgiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiJRdWFsaXR5IGhlYWx0aGNhcmUgc2hvdWxkIGJlIGFjY2Vzc2libGUgdG8gZXZlcnlvbmUuIFdlIG9mZmVyIGFmZm9yZGFibGUgcGF5bWVudCBvcHRpb25zIHRvIGhlbHAgeW91IHJlY2VpdmUgdGhlIGNhcmUgeW91IG5lZWQuIiwiYWxpZ24iOiJjZW50ZXIiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjZkYWZlOWEifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-77ebd72 e-con-full e-flex e-con e-child\\\" data-id=\\\"77ebd72\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-f8ffa5e e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"f8ffa5e\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d698b31 elementor-view-stacked elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"d698b31\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" height=\\\"512\\\" viewBox=\\\"0 0 64 64\\\" width=\\\"512\\\"><g id=\\\"Outline\\\"><g id=\\\"Outline-2\\\" data-name=\\\"Outline\\\"><path d=\\\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\\\"><\\/path><path d=\\\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\\\"><\\/path><path d=\\\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\\\"><\\/path><path d=\\\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\\\"><\\/path><path d=\\\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\\\"><\\/path><path d=\\\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\\\"><\\/path><circle cx=\\\"30\\\" cy=\\\"50\\\" r=\\\"1\\\"><\\/circle><path d=\\\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\\\"><\\/path><path d=\\\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\\\"><\\/path><\\/g><\\/g><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tInsurance Accepted Soon\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tWe are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2c80751 elementor-widget elementor-widget-button\\\" data-id=\\\"2c80751\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Contact Us<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-f03617d e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"f03617d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ae97a67 elementor-view-stacked elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"ae97a67\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" data-name=\\\"Layer 1\\\" id=\\\"Layer_1\\\" viewBox=\\\"0 0 128 128\\\"><title><\\/title><path d=\\\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\\\"><\\/path><path d=\\\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\\\"><\\/path><path d=\\\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\\\"><\\/path><path d=\\\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\\\"><\\/path><path d=\\\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\\\"><\\/path><path d=\\\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\\\"><\\/path><path d=\\\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\\\"><\\/path><path d=\\\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\\\"><\\/path><path d=\\\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\\\"><\\/path><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tSelf-Pay Pricing\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tAffordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-31ddaad elementor-widget elementor-widget-button\\\" data-id=\\\"31ddaad\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">View Services<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10475, 886, '_wp_page_template', 'elementor_header_footer'),
(10453, 884, '_wp_page_template', 'elementor_header_footer'),
(10454, 884, '_elementor_edit_mode', 'builder'),
(10455, 884, '_elementor_template_type', 'wp-page'),
(10456, 884, '_elementor_version', '4.1.4'),
(10457, 884, '_elementor_pro_version', '4.1.2'),
(10458, 884, '_elementor_global_class_usage_indexed', '1'),
(10459, 884, '_elementor_global_class_usage_indexed_preview', '1'),
(10460, 884, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10461, 884, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10423, 881, '_elementor_page_settings', 'a:0:{}'),
(10426, 882, '_wp_page_template', 'elementor_header_footer'),
(10427, 882, '_elementor_edit_mode', 'builder'),
(10428, 882, '_elementor_template_type', 'wp-page'),
(10429, 882, '_elementor_version', '4.1.4'),
(10430, 882, '_elementor_pro_version', '4.1.2'),
(10431, 882, '_elementor_global_class_usage_indexed', '1'),
(10432, 882, '_elementor_global_class_usage_indexed_preview', '1'),
(10433, 882, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10434, 882, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule a Consultation\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10436, 882, '_elementor_page_settings', 'a:0:{}'),
(10440, 883, '_elementor_edit_mode', 'builder'),
(10441, 883, '_elementor_template_type', 'wp-page'),
(10442, 883, '_elementor_version', '4.1.4'),
(10443, 883, '_elementor_pro_version', '4.1.2'),
(10444, 883, '_elementor_global_class_usage_indexed', '1'),
(10445, 883, '_elementor_global_class_usage_indexed_preview', '1'),
(10446, 883, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10447, 883, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11106, 377, '_elementor_element_cache', '{\"timeout\":1783728502,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-4939cc80 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"4939cc80\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-63262ba0 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"63262ba0\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-6a5ee675 e-con-full e-flex e-con e-child\\\" data-id=\\\"6a5ee675\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0b5a82d elementor-widget elementor-widget-heading\\\" data-id=\\\"0b5a82d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">About Us<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4f46ee2 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"4f46ee2\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjEzZjUxM2UxIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiZWRpdG9yIjoiRVZFUldFTEwgTE9OR0VWSVRZICYgV0VMTE5FU1MgcHJvdmlkZXJzIGFyZSBwYXNzaW9uYXRlIGFib3V0IHByb3ZpZGluZyB3aG9sZS1wZXJzb24sIGNvbXBhc3Npb25hdGUgY2FyZSBhbmQgbWVldGluZyBlYWNoIGluZGl2aWR1YWwgd2hlcmUgdGhleSBhcmUgb24gdGhlaXIgaGVhbHRoIGpvdXJuZXkuIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJiMjRjOGM5IiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI0LTAyLTIyIDA3OjM2IiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7InRleHRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-5acd58f7 e-con-full e-flex e-con e-child\\\" data-id=\\\"5acd58f7\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-43494c6b elementor-widget elementor-widget-heading\\\" data-id=\\\"43494c6b\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Contact Info<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3033214a elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"3033214a\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-45a813e3 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"45a813e3\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:3185064245\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">(318) 506-4245<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"fax:8556310063\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-fax\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">855-631-0063<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:Info@everwelllw.org\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Info@everwelllw.org<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-13f9ced0 e-grid-align-left elementor-hidden-widescreen elementor-hidden-desktop elementor-hidden-tablet_extra elementor-hidden-tablet elementor-hidden-mobile_extra elementor-hidden-mobile elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons\\\" data-id=\\\"13f9ced0\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\" role=\\\"list\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-f08ab80\\\" href=\\\"#\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Facebook-f<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-facebook-f\\\" viewBox=\\\"0 0 320 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-instagram elementor-repeater-item-bc50426\\\" href=\\\"#\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Instagram<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-instagram\\\" 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>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-5ec7d05\\\" href=\\\"#\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Linkedin-in<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-linkedin-in\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-dcf9c85 e-con-full e-flex e-con e-child\\\" data-id=\\\"dcf9c85\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5e370fe elementor-widget elementor-widget-heading\\\" data-id=\\\"5e370fe\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Areas We Serve<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d7ce9cc elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"d7ce9cc\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5f76a5d elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"5f76a5d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Serving the Shreveport-Bossier, LA and Homer, LA area<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-34377615 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"34377615\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4a17bf7f elementor-widget elementor-widget-heading\\\" data-id=\\\"4a17bf7f\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"elementor-heading-title elementor-size-default\\\">Copyright 2024 All Rights Reserved<\\/span>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(11107, 16, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:5:{i:0;s:16:\"widget-image-box\";i:1;s:22:\"e-animation-fadeInLeft\";i:2;s:18:\"e-animation-zoomIn\";i:3;s:23:\"e-animation-fadeInRight\";i:4;s:20:\"e-animation-fadeInUp\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(11108, 16, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642151;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11109, 16, '_elementor_element_cache', '{\"timeout\":1783728551,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-f7469f2 services_sections e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"f7469f2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-bf4d701 e-con-full e-flex e-con e-child\\\" data-id=\\\"bf4d701\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-803a875 e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"803a875\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8f5bac6 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"8f5bac6\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\\\" class=\\\"attachment-full size-full wp-image-861\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Women\\u2019s Mental Wellness<\\/h5><p class=\\\"elementor-image-box-description\\\">Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a4c4f8a elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"a4c4f8a\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-4018512 e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"4018512\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-616ef57 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"616ef57\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\\\" class=\\\"attachment-full size-full wp-image-561\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\"> Longevity + Regenerative Aesthetics<\\/h5><p class=\\\"elementor-image-box-description\\\">Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,<\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d1189d1 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"d1189d1\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-818f0ea e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"818f0ea\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-038bdb5 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"038bdb5\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\\\" class=\\\"attachment-full size-full wp-image-660\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Weight Optimization<\\/h5><p class=\\\"elementor-image-box-description\\\">Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, <\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e8c8c73 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"e8c8c73\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-43c452b e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"43c452b\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7ae505b elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"7ae505b\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\\\" class=\\\"attachment-full size-full wp-image-775\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Acute Care<\\/h5><p class=\\\"elementor-image-box-description\\\">Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, <\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a8dc0b1 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"a8dc0b1\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/acute-care\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-8d0c9f2 e-con-full animated-slow ser_col e-flex elementor-invisible e-con e-child\\\" data-id=\\\"8d0c9f2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ebaed81 elementor-position-top elementor-widget elementor-widget-image-box\\\" data-id=\\\"ebaed81\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image-box.default\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"elementor-image-box-wrapper\\\"><figure class=\\\"elementor-image-box-img\\\"><img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\\\" class=\\\"attachment-full size-full wp-image-783\\\" alt=\\\"\\\" \\/><\\/figure><div class=\\\"elementor-image-box-content\\\"><h5 class=\\\"elementor-image-box-title\\\">Contraceptive Management &amp; Counseling<\\/h5><p class=\\\"elementor-image-box-description\\\">Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><\\/div><\\/div>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-fb689ab elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"fb689ab\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(11110, 14, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:4:{i:0;s:14:\"widget-heading\";i:1;s:22:\"e-animation-fadeInLeft\";i:2;s:12:\"widget-image\";i:3;s:23:\"e-animation-fadeInRight\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(11111, 14, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642154;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11112, 14, '_elementor_element_cache', '{\"timeout\":1783728554,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-33bed18 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"33bed18\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-d61b74c e-con-full e-flex e-con e-child\\\" data-id=\\\"d61b74c\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-6813488 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"6813488\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-95faba1 elementor-widget elementor-widget-heading\\\" data-id=\\\"95faba1\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">About Us<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6IjljYjMxMmUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5FVkVSV0VMTCBMT05HRVZJVFkgJmFtcDsgV0VMTE5FU1MgcHJvdmlkZXJzIGFyZSBwYXNzaW9uYXRlIGFib3V0IHByb3ZpZGluZyB3aG9sZS1wZXJzb24sIGNvbXBhc3Npb25hdGUgY2FyZSBhbmQgbWVldGluZyBlYWNoIGluZGl2aWR1YWwgd2hlcmUgdGhleSBhcmUgb24gdGhlaXIgaGVhbHRoIGpvdXJuZXkuIFdpdGggY29tYmluZWQgZXhwZXJpZW5jZSBpbiBBZHVsdCBwcmltYXJ5IGNhcmUsIG1lbnRhbCBoZWFsdGgsIHdvbWVuXHUyMDE5cyBoZWFsdGgsIGFuZCBwZWRpYXRyaWNzLCB3ZSBwcm92aWRlIGNvbXByZWhlbnNpdmUsIGV2aWRlbmNlLWJhc2VkIGNhcmUgYWNyb3NzIHRoZSBsaWZlc3Bhbi48XC9wPjxwPk91ciBhcHByb2FjaCBnb2VzIGJleW9uZCB0cmVhdGluZyBzeW1wdG9tcyB3ZSBmb2N1cyBvbiBidWlsZGluZyBtZWFuaW5nZnVsIHJlbGF0aW9uc2hpcHMsIHByb21vdGluZyBwcmV2ZW50aW9uLCBhbmQgY3JlYXRpbmcgcGVyc29uYWxpemVkIHRyZWF0bWVudCBwbGFucyB0aGF0IHN1cHBvcnQgbG9uZy10ZXJtIGhlYWx0aCBhbmQgd2VsbG5lc3MuIFdoZXRoZXIgeW91XHUyMDE5cmUgc2Vla2luZyBwcmV2ZW50aXZlIGNhcmUsIGNvbnRyYWNlcHRpdmUgbWFuYWdlbWVudCwgd2VpZ2h0IG9wdGltaXphdGlvbiwgbWVudGFsIHdlbGxuZXNzLCBvciBsb25nZXZpdHkgdHJlYXRtZW50cywgb3VyIGdvYWwgaXMgdG8gaGVscCB5b3UgbG9vayB5b3VyIGJlc3QsIGZlZWwgeW91ciBiZXN0LCBhbmQgbGl2ZSB5b3VyIGhlYWx0aGllc3QgbGlmZS48XC9wPiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiMmY5MzljNCJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-96b4d39 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"96b4d39\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d36f866 elementor-widget elementor-widget-image\\\" data-id=\\\"d36f866\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\\\" class=\\\"attachment-full size-full wp-image-841\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6f9c4ef elementor-widget elementor-widget-image\\\" data-id=\\\"6f9c4ef\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"1000\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\\\" class=\\\"attachment-full size-full wp-image-830\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-2fc20c7 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"2fc20c7\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-e7c8399 e-con-full e-flex e-con e-child\\\" data-id=\\\"e7c8399\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-1c17f49 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"1c17f49\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a8fdd53 elementor-widget elementor-widget-image\\\" data-id=\\\"a8fdd53\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\\\" class=\\\"attachment-full size-full wp-image-857\\\" alt=\\\"\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-3bad619 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"3bad619\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-45e8b3d elementor-widget elementor-widget-heading\\\" data-id=\\\"45e8b3d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Our Mission<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"5163948f00533e5bd0f0190628e9743f\\\" data=\\\"eyJpZCI6Ijk5ZjQ0OGUiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5BdCBFVkVSV0VMTCwgb3VyIG1pc3Npb24gaXMgdG8gcHJvdmlkZSBjb21wYXNzaW9uYXRlLCBldmlkZW5jZS1iYXNlZCBjYXJlIHRoYXQgZW1wb3dlcnMgaW5kaXZpZHVhbHMgdG8gbGl2ZSBoZWFsdGhpZXIsIGxvbmdlciwgYW5kIG1vcmUgZnVsZmlsbGluZyBsaXZlcy4gV2UgYXJlIGNvbW1pdHRlZCB0byBkZWxpdmVyaW5nIHBlcnNvbmFsaXplZCwgd2hvbGUtcGVyc29uIGhlYWx0aGNhcmUgYnkgaW50ZWdyYXRpbmcgbWVudGFsIHdlbGxuZXNzLCB3ZWlnaHQgb3B0aW1pemF0aW9uLCByZWdlbmVyYXRpdmUgYWVzdGhldGljcywgYW5kIHByZXZlbnRpdmUgbWVkaWNpbmUuIFRocm91Z2ggaW5ub3ZhdGlvbiwgZWR1Y2F0aW9uLCBhbmQgbWVhbmluZ2Z1bCBwYXRpZW50IHJlbGF0aW9uc2hpcHMsIHdlIHN0cml2ZSB0byBoZWxwIGV2ZXJ5IHBhdGllbnQgbG9vayB0aGVpciBiZXN0LCBmZWVsIHRoZWlyIGJlc3QsIGFuZCB0aHJpdmUgYXQgZXZlcnkgc3RhZ2Ugb2YgbGlmZS48XC9wPiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiMmY5MzljNCJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(10463, 884, '_elementor_page_settings', 'a:0:{}'),
(10464, 885, '_wp_page_template', 'elementor_header_footer'),
(10465, 885, '_elementor_edit_mode', 'builder'),
(10466, 885, '_elementor_template_type', 'wp-page'),
(10467, 885, '_elementor_version', '4.1.4'),
(10468, 885, '_elementor_pro_version', '4.1.2'),
(10469, 885, '_elementor_global_class_usage_indexed', '1'),
(10470, 885, '_elementor_global_class_usage_indexed_preview', '1'),
(10471, 885, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10472, 885, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule a Consultation\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule a Consultation - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10474, 885, '_elementor_page_settings', 'a:0:{}'),
(10476, 886, '_elementor_edit_mode', 'builder'),
(10477, 886, '_elementor_template_type', 'wp-page'),
(10478, 886, '_elementor_version', '4.1.4'),
(10479, 886, '_elementor_pro_version', '4.1.2'),
(10480, 886, '_elementor_global_class_usage_indexed', '1'),
(10481, 886, '_elementor_global_class_usage_indexed_preview', '1'),
(10482, 886, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10483, 886, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10803, 909, '_wp_page_template', 'elementor_header_footer'),
(10804, 909, '_elementor_edit_mode', 'builder'),
(10805, 909, '_elementor_template_type', 'wp-page'),
(10806, 909, '_elementor_version', '4.1.4'),
(10807, 909, '_elementor_pro_version', '4.1.2'),
(10808, 909, '_elementor_global_class_usage_indexed', '1'),
(10809, 909, '_elementor_global_class_usage_indexed_preview', '1'),
(10810, 909, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10811, 909, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10529, 18, '_elementor_page_settings', 'a:0:{}'),
(10530, 18, '_elementor_controls_usage', 'a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:6;s:20:\"flex_justify_content\";i:1;s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:8;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:5;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;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:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10875, 914, '_wp_page_template', 'elementor_header_footer'),
(10849, 912, '_wp_page_template', 'elementor_header_footer'),
(10850, 912, '_elementor_edit_mode', 'builder'),
(10851, 912, '_elementor_template_type', 'wp-page'),
(10852, 912, '_elementor_version', '4.1.4'),
(10853, 912, '_elementor_pro_version', '4.1.2'),
(10854, 912, '_elementor_global_class_usage_indexed', '1'),
(10855, 912, '_elementor_global_class_usage_indexed_preview', '1'),
(10856, 912, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10857, 912, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10501, 887, '_elementor_page_settings', 'a:0:{}'),
(10504, 888, '_wp_page_template', 'default'),
(10506, 888, '_elementor_global_class_usage_indexed', '1'),
(10507, 888, '_elementor_edit_mode', 'builder'),
(10508, 888, '_elementor_template_type', 'wp-page'),
(10509, 888, '_elementor_version', '4.1.4'),
(10510, 888, '_elementor_pro_version', '4.1.2'),
(10511, 888, '_elementor_global_class_usage_indexed_preview', '1'),
(10512, 888, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10513, 888, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b36888\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10514, 888, '_elementor_page_settings', 'a:0:{}'),
(10519, 889, '_elementor_global_class_usage_indexed', '1'),
(10520, 889, '_elementor_edit_mode', 'builder'),
(10521, 889, '_elementor_template_type', 'wp-page'),
(10522, 889, '_elementor_version', '4.1.4'),
(10523, 889, '_elementor_pro_version', '4.1.2'),
(10524, 889, '_elementor_global_class_usage_indexed_preview', '1'),
(10525, 889, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10526, 889, '_elementor_data', '[{\"id\":\"215962d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30e11c9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"80a46a7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e651ea5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4c44118\",\"elType\":\"widget\",\"settings\":{\"title\":\"Women\\u2019s Mental Wellness\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b022a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Supporting women through every stage of life.<\\/p><p>Compassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Anxiety<\\/li><li>Depression<\\/li><li>PMDD (Premenstrual Dysphoric Disorder)<\\/li><li>ADHD<\\/li><li>Burnout<\\/li><li>Stress Management<\\/li><li>Sleep Optimization<\\/li><li>STD Testing<\\/li><\\/ul><p>Personalized care to help you restore balance, build resilience, and thrive.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3b36888\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ad7f472\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5bfc117\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"283802e\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a7e4e7a\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"10d62d2\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"3ea7c59\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}]},\"elements\":[{\"id\":\"8aad327\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"701745c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nGenetic Testing\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72c269b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS<\\/strong>, we utilize <strong>GeneSight\\u00ae Genetic Testing<\\/strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.<\\/p><p>GeneSight\\u00ae testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions<\\/strong>. While the test does not diagnose a condition or determine the single \\\"best\\\" medication, it provides valuable insights that help your provider make more informed treatment decisions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7c05d38\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b1a5c1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ed418f6\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3b2845f\"}],\"pp_display_conditions\":[{\"_id\":\"9ef36e6\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"143a352\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Genetic-Testing-a.jpg\",\"id\":455,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a9ceca\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1438368\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"81e6555\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"87d55bc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ecd7742\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"b7ecab2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"isSelectedEnd\\\">The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1\\u20132 weeks<\\/strong>.<\\/p><p>Once your results are received, your provider will review your GeneSight\\u00ae report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects\\u2014allowing for a more personalized approach to your mental health care.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li data-section-id=\\\"103s055\\\" data-start=\\\"1517\\\" data-end=\\\"1552\\\">Personalized medication selection<\\/li><li data-section-id=\\\"1me4qal\\\" data-start=\\\"1553\\\" data-end=\\\"1578\\\">Reduced trial-and-error<\\/li><li data-section-id=\\\"hpqz3z\\\" data-start=\\\"1579\\\" data-end=\\\"1633\\\">Conditions treated (depression, anxiety, ADHD, etc.)<\\/li><li data-section-id=\\\"1tq65my\\\" data-start=\\\"1634\\\" data-end=\\\"1661\\\">Simple cheek swab process<\\/li><li data-section-id=\\\"f54urs\\\" data-start=\\\"1662\\\" data-end=\\\"1688\\\">Results within 1\\u20132 weeks<\\/li><li data-section-id=\\\"zwzw0c\\\" data-start=\\\"1689\\\" data-end=\\\"1749\\\" data-is-last-node=\\\"\\\">How providers use the results to guide treatment decisions<\\/li><\\/ul>\",\"pp_display_conditions\":[{\"_id\":\"4d71b1f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10574, 20, '_elementor_page_settings', 'a:0:{}'),
(10575, 20, '_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:3:{s:13:\"content_width\";i:2;s:20:\"flex_justify_content\";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:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10546, 890, '_elementor_page_settings', 'a:0:{}'),
(10549, 891, '_wp_page_template', 'elementor_header_footer'),
(11114, 18, '_elementor_css', 'a:6:{s:4:\"time\";i:1783642179;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(10551, 891, '_elementor_global_class_usage_indexed', '1'),
(10552, 891, '_elementor_edit_mode', 'builder'),
(10553, 891, '_elementor_template_type', 'wp-page'),
(10554, 891, '_elementor_version', '4.1.4'),
(10555, 891, '_elementor_pro_version', '4.1.2'),
(10556, 891, '_elementor_global_class_usage_indexed_preview', '1'),
(10557, 891, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10558, 891, '_elementor_data', '[{\"id\":\"b504f46\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7241e23\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"03ba2b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"73114c3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d52e3d2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Longevity + Regenerative Aesthetics\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"982c774\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where beauty meets wellness.<\\/p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Botox\\u00ae<\\/li><li>Microneedling<\\/li><li>Platelet-Rich Plasma (PRP)<\\/li><li>Hair Restoration<\\/li><li>Skin Rejuvenation<\\/li><li>Recovery-Focused Wellness Protocols<\\/li><\\/ul><p>Helping you look refreshed, feel revitalized, and age with confidence.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2c21694\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_consultation\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10559, 891, '_elementor_page_settings', 'a:0:{}'),
(10599, 894, '_elementor_page_settings', 'a:0:{}'),
(10602, 895, '_wp_page_template', 'default'),
(10604, 895, '_elementor_global_class_usage_indexed', '1'),
(10605, 895, '_elementor_edit_mode', 'builder'),
(10606, 895, '_elementor_template_type', 'wp-page'),
(10607, 895, '_elementor_version', '4.1.4'),
(10608, 895, '_elementor_pro_version', '4.1.2'),
(10609, 895, '_elementor_global_class_usage_indexed_preview', '1'),
(10610, 895, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10611, 895, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $99\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbdee36\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10969, 22, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10970, 22, '_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:4:{s:19:\"image_border_radius\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:2;s:20:\"flex_justify_content\";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:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10628, 896, '_elementor_page_settings', 'a:0:{}'),
(10631, 897, '_wp_page_template', 'default'),
(10633, 897, '_elementor_global_class_usage_indexed', '1'),
(10634, 897, '_elementor_edit_mode', 'builder'),
(10635, 897, '_elementor_template_type', 'wp-page'),
(10636, 897, '_elementor_version', '4.1.4'),
(10637, 897, '_elementor_pro_version', '4.1.2'),
(10638, 897, '_elementor_global_class_usage_indexed_preview', '1'),
(10639, 897, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10640, 897, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10641, 897, '_elementor_page_settings', 'a:0:{}'),
(10644, 898, '_wp_page_template', 'default'),
(10646, 898, '_elementor_global_class_usage_indexed', '1'),
(10647, 898, '_elementor_edit_mode', 'builder'),
(10648, 898, '_elementor_template_type', 'wp-page'),
(10649, 898, '_elementor_version', '4.1.4'),
(10650, 898, '_elementor_pro_version', '4.1.2'),
(10651, 898, '_elementor_global_class_usage_indexed_preview', '1'),
(10652, 898, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10653, 898, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a757522\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(11028, 24, '_elementor_page_settings', 'a:0:{}'),
(11029, 24, '_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:3:{s:13:\"content_width\";i:2;s:20:\"flex_justify_content\";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:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10670, 899, '_elementor_page_settings', 'a:0:{}'),
(10673, 900, '_wp_page_template', 'elementor_header_footer'),
(10675, 900, '_elementor_global_class_usage_indexed', '1'),
(10676, 900, '_elementor_edit_mode', 'builder'),
(10677, 900, '_elementor_template_type', 'wp-page'),
(10678, 900, '_elementor_version', '4.1.4'),
(10679, 900, '_elementor_pro_version', '4.1.2'),
(10680, 900, '_elementor_global_class_usage_indexed_preview', '1'),
(10681, 900, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10682, 900, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10683, 900, '_elementor_page_settings', 'a:0:{}'),
(10686, 901, '_wp_page_template', 'elementor_header_footer'),
(10688, 901, '_elementor_global_class_usage_indexed', '1'),
(10689, 901, '_elementor_edit_mode', 'builder'),
(10690, 901, '_elementor_template_type', 'wp-page'),
(10691, 901, '_elementor_version', '4.1.4'),
(10692, 901, '_elementor_pro_version', '4.1.2'),
(10693, 901, '_elementor_global_class_usage_indexed_preview', '1'),
(10694, 901, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10695, 901, '_elementor_data', '[{\"id\":\"2a091f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"530dc6d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4ecfa53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cc7b98\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d3e0f02\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contraceptive Management & Counseling\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"834fa01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Personalized birth control care tailored to your health, lifestyle, and goals.<\\/p><p>We provide evidence-based counseling to help you choose the contraceptive method that\\u2019s right for you.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Birth Control Consultations<\\/li><li>Oral Contraceptives<\\/li><li>IUD Counseling &amp; Management<\\/li><li>Nexplanon\\u00ae Insertion &amp; Removal<\\/li><li>Depo-Provera\\u00ae Injections<\\/li><li>Contraceptive Patch &amp; Vaginal Ring<\\/li><\\/ul><p>Empowering you to make informed decisions with confidence and compassionate care.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9bdec69\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10715, 902, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10718, 902, '_elementor_screenshot_failed', '2026-07-08 12:02:53'),
(10733, 903, '_elementor_page_settings', 'a:0:{}'),
(10736, 904, '_wp_page_template', 'elementor_header_footer'),
(10738, 904, '_elementor_global_class_usage_indexed', '1'),
(10739, 904, '_elementor_edit_mode', 'builder'),
(10740, 904, '_elementor_template_type', 'wp-page'),
(10741, 904, '_elementor_version', '4.1.4'),
(10742, 904, '_elementor_pro_version', '4.1.2'),
(10743, 904, '_elementor_global_class_usage_indexed_preview', '1'),
(10744, 904, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10745, 904, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"300 Murrell Street Homer, LA 71040\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=32.812016,-93.069735&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10746, 904, '_elementor_page_settings', 'a:0:{}'),
(10752, 905, '_elementor_edit_mode', 'builder'),
(10753, 905, '_elementor_template_type', 'wp-page'),
(10754, 905, '_elementor_version', '4.1.4'),
(10755, 905, '_elementor_pro_version', '4.1.2'),
(10756, 905, '_elementor_global_class_usage_indexed_preview', '1'),
(10757, 905, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10758, 905, '_elementor_data', '[{\"id\":\"5ed8d6b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"17f70d6d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"3f7d1804\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"5297009f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5909d5e5\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d2ddd5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(318) 506-4245\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:3185064245\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4f3f18e\"},{\"text\":\"855-631-0063\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:8556310063\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"1a84173\"},{\"text\":\"Info@everwelllw.org\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:Info@everwelllw.org\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"54523984\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"43bd30aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89c2527\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Contact Us - Everwell Longevity and Wellness\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\",\"email_reply_to\":\"field_cc1facf\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10776, 907, '_wp_page_template', 'elementor_header_footer'),
(10778, 907, '_elementor_global_class_usage_indexed', '1'),
(10779, 907, '_elementor_edit_mode', 'builder'),
(10780, 907, '_elementor_template_type', 'wp-page'),
(10781, 907, '_elementor_version', '4.1.4'),
(10782, 907, '_elementor_pro_version', '4.1.2'),
(10783, 907, '_elementor_global_class_usage_indexed_preview', '1'),
(10784, 907, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10785, 907, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"e0d79bc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\",\"pp_condition_date_time_before_value\":\"2026-07-11 09:49\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10786, 907, '_elementor_page_settings', 'a:0:{}'),
(10798, 908, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10813, 909, '_elementor_page_settings', 'a:0:{}'),
(10816, 910, '_wp_page_template', 'elementor_header_footer'),
(10817, 910, '_elementor_edit_mode', 'builder'),
(10818, 910, '_elementor_template_type', 'wp-page'),
(10819, 910, '_elementor_version', '4.1.4'),
(10820, 910, '_elementor_pro_version', '4.1.2'),
(10821, 910, '_elementor_global_class_usage_indexed', '1'),
(10822, 910, '_elementor_global_class_usage_indexed_preview', '1'),
(10823, 910, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10824, 910, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3afee80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/back-img-12.png\",\"id\":151,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":369,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"90ef081\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_offset_x_mobile_extra\":{\"unit\":\"px\",\"size\":282,\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"motion_fx_motion_fx_mouse\":\"yes\",\"motion_fx_mouseTrack_effect\":\"yes\",\"motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10826, 910, '_elementor_page_settings', 'a:0:{}'),
(10887, 12, '_elementor_page_settings', 'a:0:{}'),
(10888, 12, '_elementor_controls_usage', 'a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:10:\"image_size\";i:4;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:14:\"_section_style\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:7:\"_margin\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:19:\"image_border_radius\";i:4;s:5:\"align\";i:2;s:5:\"width\";i:2;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:31;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:9:{s:13:\"content_width\";i:24;s:5:\"width\";i:12;s:20:\"flex_justify_content\";i:14;s:14:\"flex_direction\";i:9;s:8:\"flex_gap\";i:3;s:16:\"flex_align_items\";i:2;s:11:\"boxed_width\";i:2;s:9:\"flex_wrap\";i:2;s:10:\"min_height\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:31;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:18;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:17:\"background_repeat\";i:4;s:15:\"background_size\";i:4;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_radius\";i:10;s:12:\"border_width\";i:7;s:12:\"border_color\";i:7;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:31;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:20;s:11:\"css_classes\";i:8;s:10:\"_flex_size\";i:1;s:6:\"margin\";i:6;s:11:\"_element_id\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:18;s:18:\"animation_duration\";i:10;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:4:{s:5:\"width\";i:1;s:5:\"align\";i:1;s:4:\"look\";i:1;s:4:\"text\";i:1;}}s:5:\"style\";a:2:{s:21:\"section_divider_style\";a:1:{s:3:\"gap\";i:1;}s:18:\"section_text_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:5;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:26:\"icon_typography_font_style\";i:1;s:10:\"text_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:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:5:\"align\";i:3;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:12;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:12;s:4:\"link\";i:12;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:5:\"align\";i:9;s:12:\"border_width\";i:7;s:16:\"background_color\";i:7;s:13:\"border_border\";i:7;}}}}s:10:\"pp-marquee\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:15:\"section_marquee\";a:2:{s:5:\"items\";i:1;s:11:\"posts_items\";i:1;}s:16:\"section_settings\";a:2:{s:8:\"on_hover\";i:1;s:5:\"speed\";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:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:10:\"title_size\";i:3;s:4:\"view\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_style_box\";a:2:{s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:6;s:10:\"title_text\";i:6;s:16:\"description_text\";i:6;s:10:\"title_size\";i:6;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:1:{s:18:\"title_bottom_space\";i:6;}s:19:\"section_style_image\";a:5:{s:10:\"image_size\";i:6;s:19:\"image_border_radius\";i:6;s:19:\"image_border_border\";i:6;s:18:\"image_border_width\";i:6;s:18:\"image_border_color\";i:6;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:3:{s:19:\"section_form_fields\";a:5:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:4:{s:13:\"form_metadata\";i:1;s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:2:{s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10929, 14, '_elementor_page_settings', 'a:0:{}'),
(10930, 14, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;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:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:6;s:20:\"flex_justify_content\";i:2;s:14:\"flex_direction\";i:2;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:8;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:2;s:10:\"_flex_size\";i:2;}}}}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:5:{s:5:\"align\";i:3;s:5:\"width\";i:3;s:19:\"image_border_radius\";i:3;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),
(10941, 918, '_elementor_page_settings', 'a:0:{}'),
(10859, 912, '_elementor_page_settings', 'a:0:{}'),
(10862, 913, '_wp_page_template', 'elementor_header_footer'),
(10863, 913, '_elementor_edit_mode', 'builder'),
(10864, 913, '_elementor_template_type', 'wp-page'),
(10865, 913, '_elementor_version', '4.1.4'),
(10866, 913, '_elementor_pro_version', '4.1.2'),
(10867, 913, '_elementor_global_class_usage_indexed', '1'),
(10868, 913, '_elementor_global_class_usage_indexed_preview', '1'),
(10869, 913, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10870, 913, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10872, 913, '_elementor_page_settings', 'a:0:{}'),
(10876, 914, '_elementor_edit_mode', 'builder'),
(10877, 914, '_elementor_template_type', 'wp-page'),
(10878, 914, '_elementor_version', '4.1.4'),
(10879, 914, '_elementor_pro_version', '4.1.2'),
(10880, 914, '_elementor_global_class_usage_indexed', '1'),
(10881, 914, '_elementor_global_class_usage_indexed_preview', '1'),
(10882, 914, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10883, 914, '_elementor_data', '[{\"id\":\"236c3e1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d1f2ae5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1451133\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cbd61f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"92d9243\"}],\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"flex_direction_mobile_extra\":\"column\",\"css_classes\":\"banner_sections\"},\"elements\":[{\"id\":\"4d83e33\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85011d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Live-Well.-Age-Well-left.webp\",\"id\":811,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"c79f6ce\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"image_border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"969f6b3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ceaeda2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6c5b145\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e04c597\"}],\"pp_display_conditions\":[{\"_id\":\"60e7d5a\"}],\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"45\",\"bottom\":\"20\",\"left\":\"45\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"30\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"103fbe6\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":170,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"look\":\"line_text\",\"text\":\"Welcome \",\"gap\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f2a3c7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7c9172c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Live Well. Age Well.\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1f0ffc9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"485bc7d\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Wellness\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"93d38bd\"},{\"text\":\"Mind \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"7d12cfe\"},{\"text\":\"Metabolism \",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"3aaf8f1\"},{\"text\":\"Longevity\",\"selected_icon\":{\"value\":\"far fa-star\",\"library\":\"fa-regular\"},\"_id\":\"d1b5f7d\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"icon_color\":\"#bd9066\",\"icon_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_typography_font_style\":\"italic\",\"text_color\":\"#ADADAD\",\"pp_display_conditions\":[{\"_id\":\"4e851db\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"\"},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3a04625\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Compassionate, personalized care supporting lifelong health, wellness, and vitality.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3bd4b15\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule an Appointment\",\"pp_display_conditions\":[{\"_id\":\"9eddc35\",\"pp_condition_date_time_before_value\":\"2026-07-08 11:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_color\":\"#02010100\",\"border_border\":\"solid\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"9d178ad\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"24824ec\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0e4aeac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"807f548\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c70be14\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"12ca8a8\",\"elType\":\"widget\",\"settings\":{\"items\":[{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"_id\":\"00141bd\",\"image_size\":\"full\",\"marquee_text\":\"Why are you exhausted?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why is your weight changing?\\n\\n\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"92e5014\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your mood changed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"901f390\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why aren\\u2019t you sleeping?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"81ffca8\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why has your metabolism slowed?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb54c30\"},{\"marquee_image\":{\"url\":\"\",\"id\":\"\"},\"image_size\":\"full\",\"marquee_text\":\"Why don\'t you feel like yourself anymore?\",\"item_link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"becacc9\"}],\"posts_items\":[{\"_id\":\"e4a610e\"},{\"post_field\":\"title\",\"_id\":\"3c428a0\"}],\"separator_text\":\"\\/\",\"on_hover\":\"pause\",\"speed\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"2081299\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"separator_icon_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-marquee\"}],\"isInner\":false},{\"id\":\"538c4e6\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"auto\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#FFFFFF\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.96,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"f391f39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"b04899b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8398f7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23ad21c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f35ab0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"40\",\"row\":\"20\",\"isLinked\":false,\"unit\":\"px\",\"size\":40},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"979e181\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"1317bea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"29f0ba5\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4ef78b7\"}],\"flex_direction_mobile_extra\":\"row\",\"flex_align_items\":\"flex-start\",\"flex_align_items_mobile_extra\":\"center\"},\"elements\":[{\"id\":\"f155255\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/primary-care.jpg\",\"id\":708,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"6d9aa83\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20c1f83\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Our Mission\",\"description_text\":\"At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a0ec56f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#294C4E61\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"\"},\"_element_custom_width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0a40032\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"c9fb949\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"44ea20b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1f87d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"772a093\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"465d29f\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":814,\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f5c38e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"21bbb02\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9e8b520\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a9841bb\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Vector-BG-4.png\",\"id\":477,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.97,\"sizes\":[]}},\"elements\":[{\"id\":\"e30abbf\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6679ce6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5888fc9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"378147d\"}],\"pp_display_conditions\":[{\"_id\":\"959bb97\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"907d1ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Journey to Better Health Begins Today\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"196b8dd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a79230\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"8f7422c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2e3b4c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4ab4bc2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=astglobalcolor2\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"75a3b3a\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor5\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/img1.jpg\",\"id\":492,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.66,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ce05f99\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"05c9c71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"2021253\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"427f275\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"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\":\"c302264\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"292ec4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Womens-Mental-Wellness-home.webp\",\"id\":230,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"6339aa0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"87a0f6e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"413cda3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Botox-a.jpg\",\"id\":243,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"68d749a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b146815\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"63a5000\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Medical-Weight-Management-a.webp\",\"id\":250,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ee6ecc7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"06e2e3c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"b7c8023\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"f20a827\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1257302\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34e5cf2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"a8923b0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ea57c52\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944aaee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"6ec0a16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"0d35f95\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2958f94\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"470921e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d7254c7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f2505f1\"}],\"pp_display_conditions\":[{\"_id\":\"291603d\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c9e4990\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Service\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ae5c245\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"56301781\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_element_id\":\"schedule_appointment\"},\"elements\":[{\"id\":\"603181d9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"30\",\"row\":\"30\",\"isLinked\":true,\"unit\":\"px\",\"size\":30}},\"elements\":[{\"id\":\"46a1bca5\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"id\":712,\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Schedule-a-Consultation-a.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"min_height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"flex_align_items\":\"flex-start\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[],\"isInner\":true},{\"id\":\"24646a31\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"23b9ccd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule an Appointment\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"header_size\":\"h3\",\"_padding_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_widescreen\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile_extra\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_radius_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ef67ef1\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule an Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"First Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"ae625f4\"}]},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Last Name\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"73533b9\"}]},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Phone Number \",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}]},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"Email Address\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"b2aa0c1\"}]},{\"custom_id\":\"field_5b082cb\",\"field_label\":\"Reason for Inquiry\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Reason for Inquiry\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"_id\":\"5b082cb\"},{\"custom_id\":\"field_a0137c6\",\"field_type\":\"textarea\",\"field_label\":\"Previous Medical Diagnosis\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Previous Medical Diagnosis\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"a0137c6\"},{\"custom_id\":\"field_6307801\",\"field_type\":\"textarea\",\"field_label\":\"Current Medications\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Current Medications\",\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"3a8d06e\"}],\"rows\":3,\"_id\":\"6307801\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"Message\",\"rows\":5,\"cfef_repeater_data\":[{\"cfef_logic_field_id\":\"\",\"cfef_logic_field_is\":\"==\",\"cfef_logic_compare_value\":\"\",\"_id\":\"60fa164\"}]}],\"input_size\":\"lg\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"show_labels\":\"\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"field_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"info@everwelllw.org\",\"email_subject\":\"Schedule an Appointment - Everwell Longevity and Wellness\\\"\",\"email_from\":\" noreply@mrarif.me\",\"email_from_name\":\"Everwell Longevity &amp; Wellness\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Everwell Longevity &amp; Wellness\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Everwell Longevity &amp; Wellness\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c330c31\",\"elType\":\"container\",\"settings\":{\"boxed_width\":{\"unit\":\"px\",\"size\":1075,\"sizes\":[]},\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"d30644f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5811518\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"93666d2\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"424d0ff\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"4f7bfc4\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"01e654c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Flexible Payment Options\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"ee3c69d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d3ad2e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"6dafe9a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"77ebd72\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f8eff48\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f711576\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a17f429\"}],\"pp_display_conditions\":[{\"_id\":\"69b3987\"}]},\"elements\":[{\"id\":\"f8ffa5e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInLeft\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"d698b31\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/contract_6201233.svg\",\"id\":618},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Insurance Accepted Soon\",\"description_text\":\"We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2c80751\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f03617d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":48,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c285449\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"76cc879\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b41bba0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d061cee\"}],\"animation\":\"fadeInRight\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ae97a67\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/pay_15896636.svg\",\"id\":634},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Self-Pay Pricing\",\"description_text\":\"Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"facbac8\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor5\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"31ddaad\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/our-service\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"9b260cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10901, 915, '_elementor_page_settings', 'a:0:{}'),
(10904, 916, '_wp_page_template', 'elementor_header_footer'),
(10906, 916, '_elementor_global_class_usage_indexed', '1'),
(10907, 916, '_elementor_edit_mode', 'builder'),
(10908, 916, '_elementor_template_type', 'wp-page'),
(10909, 916, '_elementor_version', '4.1.4'),
(10910, 916, '_elementor_pro_version', '4.1.2'),
(10911, 916, '_elementor_global_class_usage_indexed_preview', '1'),
(10912, 916, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10913, 916, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10914, 916, '_elementor_page_settings', 'a:0:{}'),
(10919, 917, '_elementor_global_class_usage_indexed', '1'),
(10920, 917, '_elementor_edit_mode', 'builder'),
(10921, 917, '_elementor_template_type', 'wp-page'),
(10922, 917, '_elementor_version', '4.1.4'),
(10923, 917, '_elementor_pro_version', '4.1.2'),
(10924, 917, '_elementor_global_class_usage_indexed_preview', '1'),
(10925, 917, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10926, 917, '_elementor_data', '[{\"id\":\"33bed18\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d61b74c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column-reverse\"},\"elements\":[{\"id\":\"6813488\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"95faba1\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9cb312e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women\\u2019s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.<\\/p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you\\u2019re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"96b4d39\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"d36f866\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/EVERWELL-a.webp\",\"id\":841,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6f9c4ef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/whole-person-a.webp\",\"id\":830,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"end\",\"width\":{\"unit\":\"%\",\"size\":57,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-224\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=astglobalcolor4\"},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"_margin_mobile_extra\":{\"unit\":\"px\",\"top\":\"-147\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2fc20c7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e23b6e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e82202d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f9bd31d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"32e633b\"}],\"width_mobile\":{\"unit\":\"px\",\"size\":326},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"e7c8399\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"36d2efa\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6f0c32a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"31cdfa0\"}],\"pp_display_conditions\":[{\"_id\":\"7d738f7\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"1c17f49\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8fdd53\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Our-Mission-young-ab.jpg\",\"id\":857,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"align\":\"start\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"3b35579\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3bad619\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8107fb9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ef3f4fb\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf80c39\"}],\"pp_display_conditions\":[{\"_id\":\"f4beeab\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"45e8b3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"pp_display_conditions\":[{\"_id\":\"c16f92f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99f448e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"2f939c4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10944, 919, '_wp_page_template', 'default'),
(10946, 919, '_elementor_global_class_usage_indexed', '1'),
(10947, 919, '_elementor_edit_mode', 'builder'),
(10948, 919, '_elementor_template_type', 'wp-page'),
(10949, 919, '_elementor_version', '4.1.4'),
(10950, 919, '_elementor_pro_version', '4.1.2'),
(10951, 919, '_elementor_global_class_usage_indexed_preview', '1'),
(10952, 919, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10953, 919, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $99\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbdee36\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10954, 919, '_elementor_page_settings', 'a:0:{}'),
(10959, 920, '_elementor_global_class_usage_indexed', '1'),
(10960, 920, '_elementor_edit_mode', 'builder'),
(10961, 920, '_elementor_template_type', 'wp-page'),
(10962, 920, '_elementor_version', '4.1.4'),
(10963, 920, '_elementor_pro_version', '4.1.2'),
(10964, 920, '_elementor_global_class_usage_indexed_preview', '1'),
(10965, 920, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10966, 920, '_elementor_data', '[{\"id\":\"ee116b3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d08876\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c0b83b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#F0F0F0\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c591f0c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ddcd4cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Optimization\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d50dda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Achieve sustainable results through personalized, science-based care.<\\/p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness\\u2014not just the number on the scale.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Medical Weight Management<\\/li><li>GLP-1 Therapy (when appropriate)<\\/li><li>Metabolic Health Optimization<\\/li><li>Personalized Nutrition Guidance<\\/li><li>Lifestyle &amp; Habit Coaching<\\/li><li>Hormone Evaluation<\\/li><li>Ongoing Accountability &amp; Support<\\/li><\\/ul><p>Helping you lose weight, gain confidence, and build lasting health.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"526c9cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Weight Loss Consultation for $75\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"e03f57c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbdee36\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10976, 921, '_elementor_edit_mode', 'builder'),
(10977, 921, '_wp_page_template', 'default'),
(10979, 921, '_elementor_global_class_usage_indexed', '1'),
(10980, 921, '_elementor_template_type', 'wp-page'),
(10981, 921, '_elementor_version', '4.1.4'),
(10982, 921, '_elementor_pro_version', '4.1.2'),
(10983, 921, '_elementor_global_class_usage_indexed_preview', '1'),
(10984, 921, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(10985, 921, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a757522\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10986, 921, '_elementor_page_settings', 'a:0:{}'),
(10987, 921, '_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:3:{s:13:\"content_width\";i:2;s:20:\"flex_justify_content\";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:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(11000, 922, '_elementor_page_settings', 'a:0:{}'),
(11003, 923, '_wp_page_template', 'default'),
(11005, 923, '_elementor_global_class_usage_indexed', '1'),
(11006, 923, '_elementor_edit_mode', 'builder'),
(11007, 923, '_elementor_template_type', 'wp-page'),
(11008, 923, '_elementor_version', '4.1.4'),
(11009, 923, '_elementor_pro_version', '4.1.2'),
(11010, 923, '_elementor_global_class_usage_indexed_preview', '1'),
(11011, 923, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(11012, 923, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Urgent Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a757522\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(11013, 923, '_elementor_page_settings', 'a:0:{}'),
(11018, 924, '_elementor_global_class_usage_indexed', '1'),
(11019, 924, '_elementor_edit_mode', 'builder'),
(11020, 924, '_elementor_template_type', 'wp-page'),
(11021, 924, '_elementor_version', '4.1.4'),
(11022, 924, '_elementor_pro_version', '4.1.2'),
(11023, 924, '_elementor_global_class_usage_indexed_preview', '1'),
(11024, 924, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(11025, 924, '_elementor_data', '[{\"id\":\"c0ff64e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8321ae\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9df7f21\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"bf4f0dc\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"48f54ea\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"50\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed015b1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c9572d3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/single-urgen-a.jpg\",\"id\":779,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"82e531a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f7dc3de\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa5579\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eab8e3b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"688118c\"}],\"pp_display_conditions\":[{\"_id\":\"5629b3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"c44d511\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acute Care\",\"pp_display_conditions\":[{\"_id\":\"f30ae3a\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d98463d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Convenient, compassionate care when you need it most.<\\/p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.<\\/p><ul style=\\\"margin-left: 18px;\\\"><li>Cold, Flu &amp; COVID-19<\\/li><li>Strep Throat &amp; Ear Infections<\\/li><li>Sinus Infections<\\/li><li>Urinary Tract Infections (UTIs)<\\/li><li>STI Screening &amp; Treatment<\\/li><li>Minor Cuts, Burns<\\/li><li>Rashes &amp; Skin Conditions<\\/li><li>Allergies &amp; Asthma<\\/li><li>Nausea &amp; Vomiting<\\/li><li>School, Sports &amp; Work Physicals<\\/li><li>Rapid Testing &amp; Basic Lab Services<\\/li><\\/ul><p>Prompt, personalized care for life\\u2019s unexpected moments<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"9193cc2\",\"pp_condition_date_time_before_value\":\"2026-07-08 12:17\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a757522\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/#schedule_appointment\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"910cd6c\",\"pp_condition_date_time_before_value\":\"2026-07-11 11:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(11042, 925, '_elementor_page_settings', 'a:0:{}'),
(11045, 926, '_wp_page_template', 'default'),
(11047, 926, '_elementor_global_class_usage_indexed', '1'),
(11048, 926, '_elementor_edit_mode', 'builder'),
(11049, 926, '_elementor_template_type', 'wp-page'),
(11050, 926, '_elementor_version', '4.1.4'),
(11051, 926, '_elementor_pro_version', '4.1.2'),
(11052, 926, '_elementor_global_class_usage_indexed_preview', '1'),
(11053, 926, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29');
INSERT INTO `wpe_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11054, 926, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Urgent Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/urgent-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(11055, 926, '_elementor_page_settings', 'a:0:{}'),
(11060, 927, '_elementor_global_class_usage_indexed', '1'),
(11061, 927, '_elementor_edit_mode', 'builder'),
(11062, 927, '_elementor_template_type', 'wp-page'),
(11063, 927, '_elementor_version', '4.1.4'),
(11064, 927, '_elementor_pro_version', '4.1.2'),
(11065, 927, '_elementor_global_class_usage_indexed_preview', '1'),
(11066, 927, '_elementor_migrations_state_d2a1', '4.1.4:4.1.2:595e50d38ae27a4ec16e0e0a9df00b29'),
(11067, 927, '_elementor_data', '[{\"id\":\"f7469f2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c890a23\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"999e821\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f07a213\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"75316bc\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"bf4d701\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2bf56c4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d9d1c2b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a99627f\"}],\"pp_display_conditions\":[{\"_id\":\"5497ad1\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"flex_direction_tablet\":\"row\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"803a875\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"8f5bac6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/mental-health-a.webp\",\"id\":861,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Women\\u2019s Mental Wellness\",\"description_text\":\"Supporting women through every stage of life.\\n\\n\\n\\nCompassionate, evidence-based care designed to help you feel your best\\u2014mentally, emotionally, and physically.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a4c4f8a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/womens-mental-wellness\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4018512\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"616ef57\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Aesthetics-sab.jpg\",\"id\":561,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\" Longevity + Regenerative Aesthetics\",\"description_text\":\"Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\",\"__globals__\":{\"title_color\":\"\",\"description_color\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"d1189d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/longevity-regenerative-aesthetics\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"818f0ea\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"038bdb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Weight-Optimization-mid.webp\",\"id\":660,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Weight Optimization\",\"description_text\":\"Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"e8c8c73\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/weight-optimization\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43c452b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"7ae505b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/urgen-care-ab.jpg\",\"id\":775,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Acute Care\",\"description_text\":\"Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, \",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"a8dc0b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/acute-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"8d0c9f2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"space-between\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebbb32b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8422be\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3f23f34\"}],\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#D8D8D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"180\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"fce6a2f\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"css_classes\":\"ser_col\"},\"elements\":[{\"id\":\"ebaed81\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/wp-content\\/uploads\\/2026\\/07\\/Personalized-birth-control-care-aa.jpg\",\"id\":783,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"title_text\":\"Contraceptive Management & Counseling\",\"description_text\":\"Personalized birth control care tailored to your health, lifestyle, and goals.\",\"title_size\":\"h5\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_widescreen\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_border_radius_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f609471\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#E7E7E7\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fb689ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"justify\",\"background_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d5b5a3b\",\"pp_condition_date_time_before_value\":\"2026-07-08 10:09\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/everwell\\/contraceptive-management-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]');

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

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

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

--
-- Dumping data for table `wpe_posts`
--

INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2026-07-04 13:43:56', '2026-07-04 13:43:56', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2026-07-04 13:43:56', '2026-07-04 13:43:56', '', 0, 'https://mrarif.me/everwell/?p=1', 0, 'post', '', 1),
(2, 1, '2026-07-04 13:43:56', '2026-07-04 13:43:56', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/everwell/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'trash', 'closed', 'open', '', 'sample-page__trashed', '', '', '2026-07-05 05:25:02', '2026-07-05 05:25:02', '', 0, 'https://mrarif.me/everwell/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-07-04 13:43:56', '2026-07-04 13:43:56', '<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://mrarif.me/everwell.</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', '', 'trash', 'closed', 'open', '', 'privacy-policy__trashed', '', '', '2026-07-05 05:25:02', '2026-07-05 05:25:02', '', 0, 'https://mrarif.me/everwell/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-07-04 13:43:56', '2026-07-04 13:43:56', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-07-04 13:43:56', '2026-07-04 13:43:56', '', 0, 'https://mrarif.me/everwell/index.php/2026/07/04/navigation/', 0, 'wp_navigation', '', 0),
(5, 1, '2026-07-04 13:44:06', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2026-07-04 13:44:06', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/everwell/?p=5', 0, 'post', '', 0),
(7, 1, '2026-07-04 13:48:52', '2026-07-04 13:48:52', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-07-05 06:35:17', '2026-07-05 06:35:17', '', 0, 'https://mrarif.me/everwell/?p=7', 0, 'elementor_library', '', 0),
(10, 1, '2026-07-05 05:25:02', '2026-07-05 05:25:02', '<!-- 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/everwell.</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', '', 'inherit', 'closed', 'closed', '', '3-revision-v1', '', '', '2026-07-05 05:25:02', '2026-07-05 05:25:02', '', 3, 'https://mrarif.me/everwell/?p=10', 0, 'revision', '', 0),
(11, 1, '2026-07-05 05:25:02', '2026-07-05 05:25:02', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/everwell/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'inherit', 'closed', 'closed', '', '2-revision-v1', '', '', '2026-07-05 05:25:02', '2026-07-05 05:25:02', '', 2, 'https://mrarif.me/everwell/?p=11', 0, 'revision', '', 0),
(12, 1, '2026-07-05 05:25:15', '2026-07-05 05:25:15', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2026-07-08 20:41:40', '2026-07-08 20:41:40', '', 0, 'https://mrarif.me/everwell/?page_id=12', 0, 'page', '', 0),
(13, 1, '2026-07-05 05:25:15', '2026-07-05 05:25:15', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 05:25:15', '2026-07-05 05:25:15', '', 12, 'https://mrarif.me/everwell/?p=13', 0, 'revision', '', 0),
(14, 1, '2026-07-05 05:25:34', '2026-07-05 05:25:34', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'publish', 'closed', 'closed', '', 'about-us', '', '', '2026-07-08 20:42:02', '2026-07-08 20:42:02', '', 0, 'https://mrarif.me/everwell/?page_id=14', 0, 'page', '', 0),
(15, 1, '2026-07-05 05:25:34', '2026-07-05 05:25:34', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 05:25:34', '2026-07-05 05:25:34', '', 14, 'https://mrarif.me/everwell/?p=15', 0, 'revision', '', 0),
(16, 1, '2026-07-05 05:30:04', '2026-07-05 05:30:04', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Acute Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/acute-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'publish', 'closed', 'closed', '', 'our-service', '', '', '2026-07-08 21:14:25', '2026-07-08 21:14:25', '', 0, 'https://mrarif.me/everwell/?page_id=16', 0, 'page', '', 0),
(17, 1, '2026-07-05 05:30:04', '2026-07-05 05:30:04', '', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-05 05:30:04', '2026-07-05 05:30:04', '', 16, 'https://mrarif.me/everwell/?p=17', 0, 'revision', '', 0),
(18, 1, '2026-07-05 05:30:21', '2026-07-05 05:30:21', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>\n									<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'publish', 'closed', 'closed', '', 'womens-mental-wellness', '', '', '2026-07-08 12:00:43', '2026-07-08 12:00:43', '', 0, 'https://mrarif.me/everwell/?page_id=18', 0, 'page', '', 0),
(19, 1, '2026-07-05 05:30:21', '2026-07-05 05:30:21', '', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 05:30:21', '2026-07-05 05:30:21', '', 18, 'https://mrarif.me/everwell/?p=19', 0, 'revision', '', 0),
(20, 1, '2026-07-05 05:31:19', '2026-07-05 05:31:19', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Longevity + Regenerative Aesthetics', '', 'publish', 'closed', 'closed', '', 'longevity-regenerative-aesthetics', '', '', '2026-07-08 12:03:02', '2026-07-08 12:03:02', '', 0, 'https://mrarif.me/everwell/?page_id=20', 0, 'page', '', 0),
(21, 1, '2026-07-05 05:31:19', '2026-07-05 05:31:19', '', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-05 05:31:19', '2026-07-05 05:31:19', '', 20, 'https://mrarif.me/everwell/?p=21', 0, 'revision', '', 0),
(22, 1, '2026-07-05 05:31:39', '2026-07-05 05:31:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $75</h5>										<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'publish', 'closed', 'closed', '', 'weight-optimization', '', '', '2026-07-08 20:42:13', '2026-07-08 20:42:13', '', 0, 'https://mrarif.me/everwell/?page_id=22', 0, 'page', '', 0),
(23, 1, '2026-07-05 05:31:39', '2026-07-05 05:31:39', '', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-05 05:31:39', '2026-07-05 05:31:39', '', 22, 'https://mrarif.me/everwell/?p=23', 0, 'revision', '', 0),
(24, 1, '2026-07-05 05:40:45', '2026-07-05 05:40:45', '<img width=\"1200\" height=\"896\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" />																<h2>Acute Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Acute Care', '', 'publish', 'closed', 'closed', '', 'acute-care', '', '', '2026-07-08 21:14:06', '2026-07-08 21:14:06', '', 0, 'https://mrarif.me/everwell/?page_id=24', 0, 'page', '', 0),
(25, 1, '2026-07-05 05:40:45', '2026-07-05 05:40:45', '', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-05 05:40:45', '2026-07-05 05:40:45', '', 24, 'https://mrarif.me/everwell/?p=25', 0, 'revision', '', 0),
(26, 1, '2026-07-05 05:41:40', '2026-07-05 05:41:40', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Contraceptive Management & Counseling', '', 'publish', 'closed', 'closed', '', 'contraceptive-management-counseling', '', '', '2026-07-08 12:04:44', '2026-07-08 12:04:44', '', 0, 'https://mrarif.me/everwell/?page_id=26', 0, 'page', '', 0),
(27, 1, '2026-07-05 05:41:40', '2026-07-05 05:41:40', '', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-05 05:41:40', '2026-07-05 05:41:40', '', 26, 'https://mrarif.me/everwell/?p=27', 0, 'revision', '', 0),
(28, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', '', 'Contraceptive Management &#038; Counseling', '', 'publish', 'closed', 'closed', '', 'contraceptive-management-counseling', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=28', 8, 'nav_menu_item', '', 0),
(29, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', ' ', '', '', 'publish', 'closed', 'closed', '', '29', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=29', 7, 'nav_menu_item', '', 0),
(30, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', ' ', '', '', 'publish', 'closed', 'closed', '', '30', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=30', 6, 'nav_menu_item', '', 0),
(31, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', ' ', '', '', 'publish', 'closed', 'closed', '', '31', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=31', 5, 'nav_menu_item', '', 0),
(32, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', ' ', '', '', 'publish', 'closed', 'closed', '', '32', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=32', 4, 'nav_menu_item', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(33, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', ' ', '', '', 'publish', 'closed', 'closed', '', '33', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=33', 3, 'nav_menu_item', '', 0),
(34, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', ' ', '', '', 'publish', 'closed', 'closed', '', '34', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=34', 2, 'nav_menu_item', '', 0),
(35, 1, '2026-07-05 05:43:16', '2026-07-05 05:42:40', ' ', '', '', 'publish', 'closed', 'closed', '', '35', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=35', 1, 'nav_menu_item', '', 0),
(36, 1, '2026-07-05 05:43:03', '2026-07-05 05:43:03', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2026-07-08 20:28:46', '2026-07-08 20:28:46', '', 0, 'https://mrarif.me/everwell/?page_id=36', 0, 'page', '', 0),
(37, 1, '2026-07-05 05:43:03', '2026-07-05 05:43:03', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-05 05:43:03', '2026-07-05 05:43:03', '', 36, 'https://mrarif.me/everwell/?p=37', 0, 'revision', '', 0),
(38, 1, '2026-07-05 05:43:16', '2026-07-05 05:43:16', ' ', '', '', 'publish', 'closed', 'closed', '', '38', '', '', '2026-07-05 05:43:16', '2026-07-05 05:43:16', '', 0, 'https://mrarif.me/everwell/?p=38', 9, 'nav_menu_item', '', 0),
(39, 1, '2026-07-05 05:50:02', '2026-07-05 05:50:02', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-07-05 05:50:02', '2026-07-05 05:50:02', '', 7, 'https://mrarif.me/everwell/?p=39', 0, 'revision', '', 0),
(41, 1, '2026-07-05 06:09:28', '2026-07-05 06:09:28', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:09:28', '2026-07-05 06:09:28', '', 12, 'https://mrarif.me/everwell/?p=41', 0, 'revision', '', 0),
(42, 1, '2026-07-05 06:09:28', '2026-07-05 06:09:28', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:09:28', '2026-07-05 06:09:28', '', 12, 'https://mrarif.me/everwell/?p=42', 0, 'revision', '', 0),
(43, 1, '2026-07-05 06:09:29', '2026-07-05 06:09:29', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h1>Everwell Longevity &amp; Wellness</h1>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:09:29', '2026-07-05 06:09:29', '', 12, 'https://mrarif.me/everwell/?p=43', 0, 'revision', '', 0),
(44, 1, '2026-07-05 06:09:33', '2026-07-05 06:09:33', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h1>Everwell Longevity &amp; Wellness</h1>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:09:33', '2026-07-05 06:09:33', '', 12, 'https://mrarif.me/everwell/?p=44', 0, 'revision', '', 0),
(45, 1, '2026-07-05 06:09:33', '2026-07-05 06:09:33', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h1>Everwell Longevity &amp; Wellness</h1>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:09:33', '2026-07-05 06:09:33', '', 12, 'https://mrarif.me/everwell/?p=45', 0, 'revision', '', 0),
(46, 1, '2026-07-05 06:09:33', '2026-07-05 06:09:33', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h1>Everwell Longevity &amp; Wellness</h1>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:09:33', '2026-07-05 06:09:33', '', 12, 'https://mrarif.me/everwell/?p=46', 0, 'revision', '', 0),
(47, 1, '2026-07-05 06:31:16', '2026-07-05 06:31:16', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h1>Everwell Longevity &amp; Wellness</h1>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:31:16', '2026-07-05 06:31:16', '', 12, 'https://mrarif.me/everwell/?p=47', 0, 'revision', '', 0),
(48, 1, '2026-07-05 06:31:16', '2026-07-05 06:31:16', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h1>Everwell Longevity &amp; Wellness</h1>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:31:16', '2026-07-05 06:31:16', '', 12, 'https://mrarif.me/everwell/?p=48', 0, 'revision', '', 0),
(49, 1, '2026-07-05 06:31:16', '2026-07-05 06:31:16', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h2>Everwell Longevity &amp; Wellness</h2>					<h3>Everwell Longevity &amp; Wellness</h3>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 06:31:16', '2026-07-05 06:31:16', '', 12, 'https://mrarif.me/everwell/?p=49', 0, 'revision', '', 0),
(50, 1, '2026-07-05 06:32:35', '2026-07-05 06:32:35', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-07-05 06:32:35', '2026-07-05 06:32:35', '', 7, 'https://mrarif.me/everwell/?p=50', 0, 'revision', '', 0),
(51, 1, '2026-07-05 06:32:35', '2026-07-05 06:32:35', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-07-05 06:32:35', '2026-07-05 06:32:35', '', 7, 'https://mrarif.me/everwell/?p=51', 0, 'revision', '', 0),
(52, 1, '2026-07-05 06:33:02', '2026-07-05 06:33:02', '', 'Everwell-Longevity-&-Wellness-faveicon', '', 'inherit', 'closed', 'closed', '', 'everwell-longevity-wellness-faveicon', '', '', '2026-07-05 06:33:02', '2026-07-05 06:33:02', '', 7, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-faveicon.png', 0, 'attachment', 'image/png', 0),
(53, 1, '2026-07-05 06:33:06', '2026-07-05 06:33:06', '', 'Everwell-Longevity-&-Wellness-logo', '', 'inherit', 'closed', 'closed', '', 'everwell-longevity-wellness-logo', '', '', '2026-07-05 06:33:06', '2026-07-05 06:33:06', '', 7, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png', 0, 'attachment', 'image/png', 0),
(54, 1, '2026-07-05 06:34:53', '2026-07-05 06:34:53', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-07-05 06:34:53', '2026-07-05 06:34:53', '', 7, 'https://mrarif.me/everwell/?p=54', 0, 'revision', '', 0),
(55, 1, '2026-07-05 06:35:17', '2026-07-05 06:35:17', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-07-05 06:35:17', '2026-07-05 06:35:17', '', 7, 'https://mrarif.me/everwell/?p=55', 0, 'revision', '', 0),
(812, 1, '2026-07-08 09:55:36', '2026-07-08 09:55:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:55:36', '2026-07-08 09:55:36', '', 12, 'https://mrarif.me/everwell/?p=812', 0, 'revision', '', 0),
(57, 1, '2026-07-05 07:01:26', '2026-07-05 07:01:26', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h2>Everwell Longevity &amp; Wellness</h2>					<h3>Everwell Longevity &amp; Wellness</h3>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:01:26', '2026-07-05 07:01:26', '', 12, 'https://mrarif.me/everwell/?p=57', 0, 'revision', '', 0),
(58, 1, '2026-07-05 07:01:26', '2026-07-05 07:01:26', '<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h2>Everwell Longevity &amp; Wellness</h2>					<h3>Everwell Longevity &amp; Wellness</h3>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:01:26', '2026-07-05 07:01:26', '', 12, 'https://mrarif.me/everwell/?p=58', 0, 'revision', '', 0),
(75, 1, '2026-07-05 07:21:42', '2026-07-05 07:21:42', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:21:42', '2026-07-05 07:21:42', '', 12, 'https://mrarif.me/everwell/?p=75', 0, 'revision', '', 0),
(59, 1, '2026-07-05 07:01:26', '2026-07-05 07:01:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h2>Everwell Longevity &amp; Wellness</h2>					<h3>Everwell Longevity &amp; Wellness</h3>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:01:26', '2026-07-05 07:01:26', '', 12, 'https://mrarif.me/everwell/?p=59', 0, 'revision', '', 0),
(60, 1, '2026-07-05 07:03:33', '2026-07-05 07:03:33', '{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'Open Sans\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:02:13\"\n    },\n    \"astra-settings[body-font-variant]\": {\n        \"value\": \"400,500,600,700\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:02:13\"\n    },\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Playfair Display\', serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:03:13\"\n    },\n    \"astra-settings[headings-font-weight]\": {\n        \"value\": \"400\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:03:13\"\n    },\n    \"astra-settings[headings-font-variant]\": {\n        \"value\": \"400,500,600,700,800,900\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:03:13\"\n    },\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": 48,\n            \"tablet\": 30,\n            \"mobile\": 30,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:03:33\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '671f71d0-3c8e-4a20-ba97-ef655e2755e5', '', '', '2026-07-05 07:03:33', '2026-07-05 07:03:33', '', 0, 'https://mrarif.me/everwell/?p=60', 0, 'customize_changeset', '', 0),
(61, 1, '2026-07-05 07:04:36', '2026-07-05 07:04:36', '{\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": 40,\n            \"tablet\": 25,\n            \"mobile\": 25,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:04:33\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": 34,\n            \"tablet\": 20,\n            \"mobile\": 20,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:04:33\"\n    },\n    \"astra-settings[font-size-h4]\": {\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-07-05 07:04:33\"\n    },\n    \"astra-settings[font-size-h5]\": {\n        \"value\": {\n            \"desktop\": 23,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:04:33\"\n    },\n    \"astra-settings[font-size-h6]\": {\n        \"value\": {\n            \"desktop\": 20,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:04:33\"\n    },\n    \"astra-settings[underline-content-links]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:04:36\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'b261de2c-0354-4ec3-8fbd-19bc1912f7cc', '', '', '2026-07-05 07:04:36', '2026-07-05 07:04:36', '', 0, 'https://mrarif.me/everwell/?p=61', 0, 'customize_changeset', '', 0),
(62, 1, '2026-07-05 07:08:12', '2026-07-05 07:08:12', '{\n    \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-5)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:04:43\"\n    },\n    \"astra-settings[content-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:04:43\"\n    },\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#bd9066\",\n                \"#294c4e\",\n                \"#060606\",\n                \"#606060\",\n                \"#FFFFFF\",\n                \"#f7f1ec\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:08:12\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#bd9066\",\n                    \"#294c4e\",\n                    \"#060606\",\n                    \"#606060\",\n                    \"#FFFFFF\",\n                    \"#f7f1ec\",\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\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:08:12\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '0614c138-b7a5-462b-b9d5-702b86269621', '', '', '2026-07-05 07:08:12', '2026-07-05 07:08:12', '', 0, 'https://mrarif.me/everwell/?p=62', 0, 'customize_changeset', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(63, 1, '2026-07-05 07:08:46', '2026-07-05 07:08:46', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#bd9066\",\n                \"#294c4e\",\n                \"#060606\",\n                \"#393939\",\n                \"#FFFFFF\",\n                \"#f7f1ec\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:08:46\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#bd9066\",\n                    \"#294c4e\",\n                    \"#060606\",\n                    \"#393939\",\n                    \"#FFFFFF\",\n                    \"#f7f1ec\",\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\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:08:46\"\n    },\n    \"astra-settings[theme-color]\": {\n        \"value\": \"#ab733e\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:08:46\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'f22f6a73-1e9c-4ea6-830d-5b6a26e5bf58', '', '', '2026-07-05 07:08:46', '2026-07-05 07:08:46', '', 0, 'https://mrarif.me/everwell/f22f6a73-1e9c-4ea6-830d-5b6a26e5bf58/', 0, 'customize_changeset', '', 0),
(64, 1, '2026-07-05 07:09:45', '2026-07-05 07:09:45', '{\n    \"astra-settings[theme-button-border-group-border-color]\": {\n        \"value\": \"\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:09:16\"\n    },\n    \"astra-settings[button-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:09:16\"\n    },\n    \"astra-settings[button-h-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:09:16\"\n    },\n    \"astra-settings[button-bg-color]\": {\n        \"value\": \"var(--ast-global-color-0)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:09:16\"\n    },\n    \"astra-settings[button-bg-h-color]\": {\n        \"value\": \"var(--ast-global-color-1)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:09:16\"\n    },\n    \"astra-settings[font-family-button]\": {\n        \"value\": \"\'Open Sans\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:09:45\"\n    },\n    \"astra-settings[font-extras-button]\": {\n        \"value\": {\n            \"line-height\": 1,\n            \"line-height-unit\": \"em\",\n            \"letter-spacing\": \"1\",\n            \"letter-spacing-unit\": \"px\",\n            \"text-transform\": \"\",\n            \"text-decoration\": \"\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:09:45\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '9a2e5a16-41fa-4271-9adb-b043c0dac34a', '', '', '2026-07-05 07:09:45', '2026-07-05 07:09:45', '', 0, 'https://mrarif.me/everwell/?p=64', 0, 'customize_changeset', '', 0),
(65, 1, '2026-07-05 07:10:13', '2026-07-05 07:10:13', '{\n    \"astra-settings[theme-button-padding]\": {\n        \"value\": {\n            \"desktop\": {\n                \"top\": \"18\",\n                \"right\": \"36\",\n                \"bottom\": \"15\",\n                \"left\": \"36\"\n            },\n            \"tablet\": {\n                \"top\": 14,\n                \"right\": 28,\n                \"bottom\": 14,\n                \"left\": 28\n            },\n            \"mobile\": {\n                \"top\": 12,\n                \"right\": 24,\n                \"bottom\": 12,\n                \"left\": 24\n            },\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:10:13\"\n    },\n    \"astra-settings[button-radius-fields]\": {\n        \"value\": {\n            \"desktop\": {\n                \"top\": \"5\",\n                \"right\": \"5\",\n                \"bottom\": \"5\",\n                \"left\": \"5\"\n            },\n            \"tablet\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"mobile\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-05 07:10:13\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '4c23e011-b005-4980-b573-11e5482b3d20', '', '', '2026-07-05 07:10:13', '2026-07-05 07:10:13', '', 0, 'https://mrarif.me/everwell/4c23e011-b005-4980-b573-11e5482b3d20/', 0, 'customize_changeset', '', 0),
(66, 1, '2026-07-05 07:11:39', '2026-07-05 07:11:39', '<ul>\n							<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Schedule an Appointment\n					</a>', 'Header', '', 'publish', 'closed', 'closed', '', 'header', '', '', '2026-07-08 13:47:07', '2026-07-08 13:47:07', '', 0, 'https://mrarif.me/everwell/?post_type=elementor_library&#038;p=66', 0, 'elementor_library', '', 0),
(67, 1, '2026-07-05 07:15:37', '2026-07-05 07:15:37', '<ul>\n							<li>\n											<a href=\"mailto:info@trulypatiencehomecare.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@trulypatiencehomecare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX-XX\n											</a>\n									</li>\n						</ul>\n																	<img src=\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'header section', '', 'trash', 'closed', 'closed', '', 'header-section__trashed', '', '', '2026-07-05 10:55:15', '2026-07-05 10:55:15', '', 0, 'https://mrarif.me/everwell/?elementor_library=header-section', 0, 'elementor_library', '', 0),
(68, 1, '2026-07-05 07:15:37', '2026-07-05 07:15:37', '<ul>\n							<li>\n											<a href=\"mailto:info@trulypatiencehomecare.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@trulypatiencehomecare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX-XX\n											</a>\n									</li>\n						</ul>\n																	<img src=\"https://mrarif.me/everwell/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'header section', '', 'inherit', 'closed', 'closed', '', '67-revision-v1', '', '', '2026-07-05 07:15:37', '2026-07-05 07:15:37', '', 67, 'https://mrarif.me/everwell/?p=68', 0, 'revision', '', 0),
(69, 1, '2026-07-05 07:16:58', '2026-07-05 07:16:58', '', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 07:16:58', '2026-07-05 07:16:58', '', 66, 'https://mrarif.me/everwell/?p=69', 0, 'revision', '', 0),
(70, 1, '2026-07-05 07:16:58', '2026-07-05 07:16:58', '<ul>\n							<li>\n											<a href=\"mailto:info@trulypatiencehomecare.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@trulypatiencehomecare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX-XX\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"#\">\n									Contact Us\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 07:16:58', '2026-07-05 07:16:58', '', 66, 'https://mrarif.me/everwell/?p=70', 0, 'revision', '', 0),
(71, 1, '2026-07-05 07:17:20', '2026-07-05 07:17:20', '<ul>\n							<li>\n											<a href=\"mailto:info@trulypatiencehomecare.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@trulypatiencehomecare.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XXX-XXX-XXX-XX\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"#\">\n									Contact Us\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 07:17:20', '2026-07-05 07:17:20', '', 66, 'https://mrarif.me/everwell/?p=71', 0, 'revision', '', 0),
(72, 1, '2026-07-05 07:18:38', '2026-07-05 07:18:38', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"#\">\n									Contact Us\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 07:18:38', '2026-07-05 07:18:38', '', 66, 'https://mrarif.me/everwell/?p=72', 0, 'revision', '', 0),
(73, 1, '2026-07-05 07:21:41', '2026-07-05 07:21:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h2>Everwell Longevity &amp; Wellness</h2>					<h3>Everwell Longevity &amp; Wellness</h3>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:21:41', '2026-07-05 07:21:41', '', 12, 'https://mrarif.me/everwell/?p=73', 0, 'revision', '', 0),
(74, 1, '2026-07-05 07:21:41', '2026-07-05 07:21:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>					<h2>Everwell Longevity &amp; Wellness</h2>					<h3>Everwell Longevity &amp; Wellness</h3>		EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:21:41', '2026-07-05 07:21:41', '', 12, 'https://mrarif.me/everwell/?p=74', 0, 'revision', '', 0),
(76, 1, '2026-07-05 07:22:32', '2026-07-05 07:22:32', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:22:32', '2026-07-05 07:22:32', '', 12, 'https://mrarif.me/everwell/?p=76', 0, 'revision', '', 0),
(77, 1, '2026-07-05 07:22:32', '2026-07-05 07:22:32', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:22:32', '2026-07-05 07:22:32', '', 12, 'https://mrarif.me/everwell/?p=77', 0, 'revision', '', 0),
(78, 1, '2026-07-05 07:22:33', '2026-07-05 07:22:33', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:22:33', '2026-07-05 07:22:33', '', 12, 'https://mrarif.me/everwell/?p=78', 0, 'revision', '', 0),
(79, 1, '2026-07-05 07:34:09', '2026-07-05 07:34:09', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:34:09', '2026-07-05 07:34:09', '', 12, 'https://mrarif.me/everwell/?p=79', 0, 'revision', '', 0),
(80, 1, '2026-07-05 07:34:09', '2026-07-05 07:34:09', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:34:09', '2026-07-05 07:34:09', '', 12, 'https://mrarif.me/everwell/?p=80', 0, 'revision', '', 0),
(81, 1, '2026-07-05 07:34:09', '2026-07-05 07:34:09', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:34:09', '2026-07-05 07:34:09', '', 12, 'https://mrarif.me/everwell/?p=81', 0, 'revision', '', 0),
(82, 1, '2026-07-05 07:35:50', '2026-07-05 07:35:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:35:50', '2026-07-05 07:35:50', '', 12, 'https://mrarif.me/everwell/?p=82', 0, 'revision', '', 0),
(83, 1, '2026-07-05 07:35:50', '2026-07-05 07:35:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																<h5>Welcome </h5>					<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:35:50', '2026-07-05 07:35:50', '', 12, 'https://mrarif.me/everwell/?p=83', 0, 'revision', '', 0),
(84, 1, '2026-07-05 07:35:51', '2026-07-05 07:35:51', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:35:51', '2026-07-05 07:35:51', '', 12, 'https://mrarif.me/everwell/?p=84', 0, 'revision', '', 0),
(85, 1, '2026-07-05 07:36:58', '2026-07-05 07:36:58', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:36:58', '2026-07-05 07:36:58', '', 12, 'https://mrarif.me/everwell/?p=85', 0, 'revision', '', 0),
(86, 1, '2026-07-05 07:36:58', '2026-07-05 07:36:58', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:36:58', '2026-07-05 07:36:58', '', 12, 'https://mrarif.me/everwell/?p=86', 0, 'revision', '', 0),
(87, 1, '2026-07-05 07:36:58', '2026-07-05 07:36:58', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:36:58', '2026-07-05 07:36:58', '', 12, 'https://mrarif.me/everwell/?p=87', 0, 'revision', '', 0),
(88, 1, '2026-07-05 07:37:41', '2026-07-05 07:37:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:37:41', '2026-07-05 07:37:41', '', 12, 'https://mrarif.me/everwell/?p=88', 0, 'revision', '', 0),
(89, 1, '2026-07-05 07:37:41', '2026-07-05 07:37:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:37:41', '2026-07-05 07:37:41', '', 12, 'https://mrarif.me/everwell/?p=89', 0, 'revision', '', 0),
(90, 1, '2026-07-05 07:37:41', '2026-07-05 07:37:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:37:41', '2026-07-05 07:37:41', '', 12, 'https://mrarif.me/everwell/?p=90', 0, 'revision', '', 0),
(91, 1, '2026-07-05 07:40:24', '2026-07-05 07:40:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:40:24', '2026-07-05 07:40:24', '', 12, 'https://mrarif.me/everwell/?p=91', 0, 'revision', '', 0),
(92, 1, '2026-07-05 07:40:24', '2026-07-05 07:40:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:40:24', '2026-07-05 07:40:24', '', 12, 'https://mrarif.me/everwell/?p=92', 0, 'revision', '', 0),
(93, 1, '2026-07-05 07:40:24', '2026-07-05 07:40:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p><br />Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:40:24', '2026-07-05 07:40:24', '', 12, 'https://mrarif.me/everwell/?p=93', 0, 'revision', '', 0),
(94, 1, '2026-07-05 07:41:49', '2026-07-05 07:41:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p><br />Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:41:49', '2026-07-05 07:41:49', '', 12, 'https://mrarif.me/everwell/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-07-05 07:41:49', '2026-07-05 07:41:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p><br />Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:41:49', '2026-07-05 07:41:49', '', 12, 'https://mrarif.me/everwell/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-07-05 07:41:49', '2026-07-05 07:41:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p><br />Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 07:41:49', '2026-07-05 07:41:49', '', 12, 'https://mrarif.me/everwell/?p=96', 0, 'revision', '', 0),
(97, 1, '2026-07-05 08:06:21', '2026-07-05 08:06:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p><br />Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:06:21', '2026-07-05 08:06:21', '', 12, 'https://mrarif.me/everwell/?p=97', 0, 'revision', '', 0),
(98, 1, '2026-07-05 08:06:21', '2026-07-05 08:06:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p><br />Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:06:21', '2026-07-05 08:06:21', '', 12, 'https://mrarif.me/everwell/?p=98', 0, 'revision', '', 0),
(99, 1, '2026-07-05 08:06:21', '2026-07-05 08:06:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:06:21', '2026-07-05 08:06:21', '', 12, 'https://mrarif.me/everwell/?p=99', 0, 'revision', '', 0),
(100, 1, '2026-07-05 08:06:37', '2026-07-05 08:06:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:06:37', '2026-07-05 08:06:37', '', 12, 'https://mrarif.me/everwell/?p=100', 0, 'revision', '', 0),
(101, 1, '2026-07-05 08:06:37', '2026-07-05 08:06:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:06:37', '2026-07-05 08:06:37', '', 12, 'https://mrarif.me/everwell/?p=101', 0, 'revision', '', 0),
(102, 1, '2026-07-05 08:06:37', '2026-07-05 08:06:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:06:37', '2026-07-05 08:06:37', '', 12, 'https://mrarif.me/everwell/?p=102', 0, 'revision', '', 0),
(103, 1, '2026-07-05 08:53:36', '2026-07-05 08:53:36', '', 'about mental', '', 'inherit', 'closed', 'closed', '', 'about-mental', '', '', '2026-07-05 08:53:36', '2026-07-05 08:53:36', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(104, 1, '2026-07-05 08:54:50', '2026-07-05 08:54:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:54:50', '2026-07-05 08:54:50', '', 12, 'https://mrarif.me/everwell/?p=104', 0, 'revision', '', 0),
(105, 1, '2026-07-05 08:54:50', '2026-07-05 08:54:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:54:50', '2026-07-05 08:54:50', '', 12, 'https://mrarif.me/everwell/?p=105', 0, 'revision', '', 0),
(106, 1, '2026-07-05 08:54:50', '2026-07-05 08:54:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:54:50', '2026-07-05 08:54:50', '', 12, 'https://mrarif.me/everwell/?p=106', 0, 'revision', '', 0),
(147, 1, '2026-07-05 09:26:03', '2026-07-05 09:26:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:26:03', '2026-07-05 09:26:03', '', 12, 'https://mrarif.me/everwell/?p=147', 0, 'revision', '', 0),
(144, 1, '2026-07-05 09:25:27', '2026-07-05 09:25:27', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:25:27', '2026-07-05 09:25:27', '', 12, 'https://mrarif.me/everwell/?p=144', 0, 'revision', '', 0),
(115, 1, '2026-07-05 09:07:15', '2026-07-05 09:07:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:07:15', '2026-07-05 09:07:15', '', 12, 'https://mrarif.me/everwell/?p=115', 0, 'revision', '', 0),
(111, 1, '2026-07-05 08:59:58', '2026-07-05 08:59:58', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"1000\" height=\"572\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mission-a.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:59:58', '2026-07-05 08:59:58', '', 12, 'https://mrarif.me/everwell/?p=111', 0, 'revision', '', 0),
(108, 1, '2026-07-05 08:59:37', '2026-07-05 08:59:37', '', 'mission a', '', 'inherit', 'closed', 'closed', '', 'mission-a', '', '', '2026-07-05 08:59:37', '2026-07-05 08:59:37', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/mission-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(109, 1, '2026-07-05 08:59:58', '2026-07-05 08:59:58', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:59:58', '2026-07-05 08:59:58', '', 12, 'https://mrarif.me/everwell/?p=109', 0, 'revision', '', 0),
(110, 1, '2026-07-05 08:59:58', '2026-07-05 08:59:58', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 08:59:58', '2026-07-05 08:59:58', '', 12, 'https://mrarif.me/everwell/?p=110', 0, 'revision', '', 0),
(112, 1, '2026-07-05 09:05:38', '2026-07-05 09:05:38', '', 'prymary', '', 'inherit', 'closed', 'closed', '', 'prymary', '', '', '2026-07-05 09:05:38', '2026-07-05 09:05:38', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg', 0, 'attachment', 'image/jpeg', 0),
(113, 1, '2026-07-05 09:07:14', '2026-07-05 09:07:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"1000\" height=\"572\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mission-a.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:07:14', '2026-07-05 09:07:14', '', 12, 'https://mrarif.me/everwell/?p=113', 0, 'revision', '', 0),
(114, 1, '2026-07-05 09:07:14', '2026-07-05 09:07:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"1000\" height=\"572\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mission-a.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:07:14', '2026-07-05 09:07:14', '', 12, 'https://mrarif.me/everwell/?p=114', 0, 'revision', '', 0),
(116, 1, '2026-07-05 09:07:18', '2026-07-05 09:07:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:07:18', '2026-07-05 09:07:18', '', 12, 'https://mrarif.me/everwell/?p=116', 0, 'revision', '', 0),
(117, 1, '2026-07-05 09:07:18', '2026-07-05 09:07:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:07:18', '2026-07-05 09:07:18', '', 12, 'https://mrarif.me/everwell/?p=117', 0, 'revision', '', 0),
(118, 1, '2026-07-05 09:07:19', '2026-07-05 09:07:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:07:19', '2026-07-05 09:07:19', '', 12, 'https://mrarif.me/everwell/?p=118', 0, 'revision', '', 0),
(119, 1, '2026-07-05 09:08:40', '2026-07-05 09:08:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:08:40', '2026-07-05 09:08:40', '', 12, 'https://mrarif.me/everwell/?p=119', 0, 'revision', '', 0),
(120, 1, '2026-07-05 09:08:40', '2026-07-05 09:08:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:08:40', '2026-07-05 09:08:40', '', 12, 'https://mrarif.me/everwell/?p=120', 0, 'revision', '', 0),
(121, 1, '2026-07-05 09:08:40', '2026-07-05 09:08:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:08:40', '2026-07-05 09:08:40', '', 12, 'https://mrarif.me/everwell/?p=121', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(122, 1, '2026-07-05 09:09:21', '2026-07-05 09:09:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:09:21', '2026-07-05 09:09:21', '', 12, 'https://mrarif.me/everwell/?p=122', 0, 'revision', '', 0),
(123, 1, '2026-07-05 09:09:21', '2026-07-05 09:09:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:09:21', '2026-07-05 09:09:21', '', 12, 'https://mrarif.me/everwell/?p=123', 0, 'revision', '', 0),
(124, 1, '2026-07-05 09:09:22', '2026-07-05 09:09:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:09:22', '2026-07-05 09:09:22', '', 12, 'https://mrarif.me/everwell/?p=124', 0, 'revision', '', 0),
(125, 1, '2026-07-05 09:14:49', '2026-07-05 09:14:49', '', 'wellness ab', '', 'inherit', 'closed', 'closed', '', 'wellness-ab', '', '', '2026-07-05 09:14:49', '2026-07-05 09:14:49', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp', 0, 'attachment', 'image/webp', 0),
(129, 1, '2026-07-05 09:16:06', '2026-07-05 09:16:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:06', '2026-07-05 09:16:06', '', 12, 'https://mrarif.me/everwell/?p=129', 0, 'revision', '', 0),
(127, 1, '2026-07-05 09:16:06', '2026-07-05 09:16:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:06', '2026-07-05 09:16:06', '', 12, 'https://mrarif.me/everwell/?p=127', 0, 'revision', '', 0),
(128, 1, '2026-07-05 09:16:06', '2026-07-05 09:16:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:06', '2026-07-05 09:16:06', '', 12, 'https://mrarif.me/everwell/?p=128', 0, 'revision', '', 0),
(130, 1, '2026-07-05 09:16:13', '2026-07-05 09:16:13', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:13', '2026-07-05 09:16:13', '', 12, 'https://mrarif.me/everwell/?p=130', 0, 'revision', '', 0),
(131, 1, '2026-07-05 09:16:13', '2026-07-05 09:16:13', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:13', '2026-07-05 09:16:13', '', 12, 'https://mrarif.me/everwell/?p=131', 0, 'revision', '', 0),
(132, 1, '2026-07-05 09:16:14', '2026-07-05 09:16:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:14', '2026-07-05 09:16:14', '', 12, 'https://mrarif.me/everwell/?p=132', 0, 'revision', '', 0),
(133, 1, '2026-07-05 09:16:28', '2026-07-05 09:16:28', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:28', '2026-07-05 09:16:28', '', 12, 'https://mrarif.me/everwell/?p=133', 0, 'revision', '', 0),
(134, 1, '2026-07-05 09:16:28', '2026-07-05 09:16:28', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:28', '2026-07-05 09:16:28', '', 12, 'https://mrarif.me/everwell/?p=134', 0, 'revision', '', 0),
(135, 1, '2026-07-05 09:16:28', '2026-07-05 09:16:28', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:16:28', '2026-07-05 09:16:28', '', 12, 'https://mrarif.me/everwell/?p=135', 0, 'revision', '', 0),
(136, 1, '2026-07-05 09:19:39', '2026-07-05 09:19:39', '', 'wellness new', '', 'inherit', 'closed', 'closed', '', 'wellness-new', '', '', '2026-07-05 09:19:39', '2026-07-05 09:19:39', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-new.webp', 0, 'attachment', 'image/webp', 0),
(141, 1, '2026-07-05 09:25:13', '2026-07-05 09:25:13', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:25:13', '2026-07-05 09:25:13', '', 12, 'https://mrarif.me/everwell/?p=141', 0, 'revision', '', 0),
(138, 1, '2026-07-05 09:23:33', '2026-07-05 09:23:33', '', 'wellness-photo', '', 'inherit', 'closed', 'closed', '', 'wellness-photo', '', '', '2026-07-05 09:23:33', '2026-07-05 09:23:33', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg', 0, 'attachment', 'image/jpeg', 0),
(139, 1, '2026-07-05 09:25:12', '2026-07-05 09:25:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:25:12', '2026-07-05 09:25:12', '', 12, 'https://mrarif.me/everwell/?p=139', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(140, 1, '2026-07-05 09:25:12', '2026-07-05 09:25:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1100\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-ab.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:25:12', '2026-07-05 09:25:12', '', 12, 'https://mrarif.me/everwell/?p=140', 0, 'revision', '', 0),
(142, 1, '2026-07-05 09:25:27', '2026-07-05 09:25:27', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:25:27', '2026-07-05 09:25:27', '', 12, 'https://mrarif.me/everwell/?p=142', 0, 'revision', '', 0),
(143, 1, '2026-07-05 09:25:27', '2026-07-05 09:25:27', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:25:27', '2026-07-05 09:25:27', '', 12, 'https://mrarif.me/everwell/?p=143', 0, 'revision', '', 0),
(145, 1, '2026-07-05 09:26:03', '2026-07-05 09:26:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:26:03', '2026-07-05 09:26:03', '', 12, 'https://mrarif.me/everwell/?p=145', 0, 'revision', '', 0),
(146, 1, '2026-07-05 09:26:03', '2026-07-05 09:26:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>					\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine.					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:26:03', '2026-07-05 09:26:03', '', 12, 'https://mrarif.me/everwell/?p=146', 0, 'revision', '', 0),
(148, 1, '2026-07-05 09:26:15', '2026-07-05 09:26:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:26:15', '2026-07-05 09:26:15', '', 12, 'https://mrarif.me/everwell/?p=148', 0, 'revision', '', 0),
(149, 1, '2026-07-05 09:26:15', '2026-07-05 09:26:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:26:15', '2026-07-05 09:26:15', '', 12, 'https://mrarif.me/everwell/?p=149', 0, 'revision', '', 0),
(150, 1, '2026-07-05 09:26:15', '2026-07-05 09:26:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:26:15', '2026-07-05 09:26:15', '', 12, 'https://mrarif.me/everwell/?p=150', 0, 'revision', '', 0),
(151, 1, '2026-07-05 09:27:57', '2026-07-05 09:27:57', '', 'back-img-12', '', 'inherit', 'closed', 'closed', '', 'back-img-12', '', '', '2026-07-05 09:27:57', '2026-07-05 09:27:57', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png', 0, 'attachment', 'image/png', 0),
(152, 1, '2026-07-05 09:28:40', '2026-07-05 09:28:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:28:40', '2026-07-05 09:28:40', '', 12, 'https://mrarif.me/everwell/?p=152', 0, 'revision', '', 0),
(153, 1, '2026-07-05 09:28:40', '2026-07-05 09:28:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:28:40', '2026-07-05 09:28:40', '', 12, 'https://mrarif.me/everwell/?p=153', 0, 'revision', '', 0),
(154, 1, '2026-07-05 09:28:41', '2026-07-05 09:28:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:28:41', '2026-07-05 09:28:41', '', 12, 'https://mrarif.me/everwell/?p=154', 0, 'revision', '', 0),
(155, 1, '2026-07-05 09:34:38', '2026-07-05 09:34:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:34:38', '2026-07-05 09:34:38', '', 12, 'https://mrarif.me/everwell/?p=155', 0, 'revision', '', 0),
(156, 1, '2026-07-05 09:34:38', '2026-07-05 09:34:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:34:38', '2026-07-05 09:34:38', '', 12, 'https://mrarif.me/everwell/?p=156', 0, 'revision', '', 0),
(157, 1, '2026-07-05 09:34:39', '2026-07-05 09:34:39', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:34:39', '2026-07-05 09:34:39', '', 12, 'https://mrarif.me/everwell/?p=157', 0, 'revision', '', 0),
(158, 1, '2026-07-05 09:36:12', '2026-07-05 09:36:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:36:12', '2026-07-05 09:36:12', '', 12, 'https://mrarif.me/everwell/?p=158', 0, 'revision', '', 0),
(159, 1, '2026-07-05 09:36:12', '2026-07-05 09:36:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:36:12', '2026-07-05 09:36:12', '', 12, 'https://mrarif.me/everwell/?p=159', 0, 'revision', '', 0),
(160, 1, '2026-07-05 09:36:12', '2026-07-05 09:36:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:36:12', '2026-07-05 09:36:12', '', 12, 'https://mrarif.me/everwell/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-07-05 09:37:47', '2026-07-05 09:37:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:37:47', '2026-07-05 09:37:47', '', 12, 'https://mrarif.me/everwell/?p=161', 0, 'revision', '', 0),
(162, 1, '2026-07-05 09:37:47', '2026-07-05 09:37:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:37:47', '2026-07-05 09:37:47', '', 12, 'https://mrarif.me/everwell/?p=162', 0, 'revision', '', 0),
(163, 1, '2026-07-05 09:37:47', '2026-07-05 09:37:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:37:47', '2026-07-05 09:37:47', '', 12, 'https://mrarif.me/everwell/?p=163', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(167, 1, '2026-07-05 09:57:33', '2026-07-05 09:57:33', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:57:33', '2026-07-05 09:57:33', '', 12, 'https://mrarif.me/everwell/?p=167', 0, 'revision', '', 0),
(165, 1, '2026-07-05 09:57:33', '2026-07-05 09:57:33', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:57:33', '2026-07-05 09:57:33', '', 12, 'https://mrarif.me/everwell/?p=165', 0, 'revision', '', 0),
(166, 1, '2026-07-05 09:57:33', '2026-07-05 09:57:33', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:57:33', '2026-07-05 09:57:33', '', 12, 'https://mrarif.me/everwell/?p=166', 0, 'revision', '', 0),
(168, 1, '2026-07-05 09:58:10', '2026-07-05 09:58:10', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:10', '2026-07-05 09:58:10', '', 12, 'https://mrarif.me/everwell/?p=168', 0, 'revision', '', 0),
(169, 1, '2026-07-05 09:58:10', '2026-07-05 09:58:10', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:10', '2026-07-05 09:58:10', '', 12, 'https://mrarif.me/everwell/?p=169', 0, 'revision', '', 0),
(170, 1, '2026-07-05 09:58:10', '2026-07-05 09:58:10', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:10', '2026-07-05 09:58:10', '', 12, 'https://mrarif.me/everwell/?p=170', 0, 'revision', '', 0),
(171, 1, '2026-07-05 09:58:23', '2026-07-05 09:58:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:23', '2026-07-05 09:58:23', '', 12, 'https://mrarif.me/everwell/?p=171', 0, 'revision', '', 0),
(172, 1, '2026-07-05 09:58:23', '2026-07-05 09:58:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:23', '2026-07-05 09:58:23', '', 12, 'https://mrarif.me/everwell/?p=172', 0, 'revision', '', 0),
(173, 1, '2026-07-05 09:58:23', '2026-07-05 09:58:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:23', '2026-07-05 09:58:23', '', 12, 'https://mrarif.me/everwell/?p=173', 0, 'revision', '', 0),
(174, 1, '2026-07-05 09:58:30', '2026-07-05 09:58:30', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:30', '2026-07-05 09:58:30', '', 12, 'https://mrarif.me/everwell/?p=174', 0, 'revision', '', 0),
(175, 1, '2026-07-05 09:58:30', '2026-07-05 09:58:30', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:30', '2026-07-05 09:58:30', '', 12, 'https://mrarif.me/everwell/?p=175', 0, 'revision', '', 0),
(176, 1, '2026-07-05 09:58:30', '2026-07-05 09:58:30', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:58:30', '2026-07-05 09:58:30', '', 12, 'https://mrarif.me/everwell/?p=176', 0, 'revision', '', 0),
(177, 1, '2026-07-05 09:59:04', '2026-07-05 09:59:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:59:04', '2026-07-05 09:59:04', '', 12, 'https://mrarif.me/everwell/?p=177', 0, 'revision', '', 0),
(178, 1, '2026-07-05 09:59:04', '2026-07-05 09:59:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:59:04', '2026-07-05 09:59:04', '', 12, 'https://mrarif.me/everwell/?p=178', 0, 'revision', '', 0),
(179, 1, '2026-07-05 09:59:04', '2026-07-05 09:59:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 09:59:04', '2026-07-05 09:59:04', '', 12, 'https://mrarif.me/everwell/?p=179', 0, 'revision', '', 0),
(180, 1, '2026-07-05 10:01:18', '2026-07-05 10:01:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:01:18', '2026-07-05 10:01:18', '', 12, 'https://mrarif.me/everwell/?p=180', 0, 'revision', '', 0),
(181, 1, '2026-07-05 10:01:18', '2026-07-05 10:01:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:01:18', '2026-07-05 10:01:18', '', 12, 'https://mrarif.me/everwell/?p=181', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(182, 1, '2026-07-05 10:01:19', '2026-07-05 10:01:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:01:19', '2026-07-05 10:01:19', '', 12, 'https://mrarif.me/everwell/?p=182', 0, 'revision', '', 0),
(183, 1, '2026-07-05 10:01:50', '2026-07-05 10:01:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:01:50', '2026-07-05 10:01:50', '', 12, 'https://mrarif.me/everwell/?p=183', 0, 'revision', '', 0),
(184, 1, '2026-07-05 10:01:50', '2026-07-05 10:01:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:01:50', '2026-07-05 10:01:50', '', 12, 'https://mrarif.me/everwell/?p=184', 0, 'revision', '', 0),
(185, 1, '2026-07-05 10:01:50', '2026-07-05 10:01:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:01:50', '2026-07-05 10:01:50', '', 12, 'https://mrarif.me/everwell/?p=185', 0, 'revision', '', 0),
(186, 1, '2026-07-05 10:02:35', '2026-07-05 10:02:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:02:35', '2026-07-05 10:02:35', '', 12, 'https://mrarif.me/everwell/?p=186', 0, 'revision', '', 0),
(187, 1, '2026-07-05 10:02:35', '2026-07-05 10:02:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:02:35', '2026-07-05 10:02:35', '', 12, 'https://mrarif.me/everwell/?p=187', 0, 'revision', '', 0),
(188, 1, '2026-07-05 10:02:35', '2026-07-05 10:02:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:02:35', '2026-07-05 10:02:35', '', 12, 'https://mrarif.me/everwell/?p=188', 0, 'revision', '', 0),
(189, 1, '2026-07-05 10:03:43', '2026-07-05 10:03:43', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:03:43', '2026-07-05 10:03:43', '', 12, 'https://mrarif.me/everwell/?p=189', 0, 'revision', '', 0),
(190, 1, '2026-07-05 10:03:43', '2026-07-05 10:03:43', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:03:43', '2026-07-05 10:03:43', '', 12, 'https://mrarif.me/everwell/?p=190', 0, 'revision', '', 0),
(191, 1, '2026-07-05 10:03:43', '2026-07-05 10:03:43', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:03:43', '2026-07-05 10:03:43', '', 12, 'https://mrarif.me/everwell/?p=191', 0, 'revision', '', 0),
(192, 1, '2026-07-05 10:04:46', '2026-07-05 10:04:46', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:04:46', '2026-07-05 10:04:46', '', 12, 'https://mrarif.me/everwell/?p=192', 0, 'revision', '', 0),
(193, 1, '2026-07-05 10:04:47', '2026-07-05 10:04:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:04:47', '2026-07-05 10:04:47', '', 12, 'https://mrarif.me/everwell/?p=193', 0, 'revision', '', 0),
(194, 1, '2026-07-05 10:04:47', '2026-07-05 10:04:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:04:47', '2026-07-05 10:04:47', '', 12, 'https://mrarif.me/everwell/?p=194', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(195, 1, '2026-07-05 10:08:44', '2026-07-05 10:08:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:08:44', '2026-07-05 10:08:44', '', 12, 'https://mrarif.me/everwell/?p=195', 0, 'revision', '', 0),
(196, 1, '2026-07-05 10:08:45', '2026-07-05 10:08:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:08:45', '2026-07-05 10:08:45', '', 12, 'https://mrarif.me/everwell/?p=196', 0, 'revision', '', 0),
(197, 1, '2026-07-05 10:08:45', '2026-07-05 10:08:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"wellness-photo\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:08:45', '2026-07-05 10:08:45', '', 12, 'https://mrarif.me/everwell/?p=197', 0, 'revision', '', 0),
(198, 1, '2026-07-05 10:10:42', '2026-07-05 10:10:42', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"wellness-photo\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:10:42', '2026-07-05 10:10:42', '', 12, 'https://mrarif.me/everwell/?p=198', 0, 'revision', '', 0),
(199, 1, '2026-07-05 10:10:42', '2026-07-05 10:10:42', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"wellness-photo\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:10:42', '2026-07-05 10:10:42', '', 12, 'https://mrarif.me/everwell/?p=199', 0, 'revision', '', 0),
(200, 1, '2026-07-05 10:10:43', '2026-07-05 10:10:43', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mission-a.jpg\" alt=\"mission a\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:10:43', '2026-07-05 10:10:43', '', 12, 'https://mrarif.me/everwell/?p=200', 0, 'revision', '', 0),
(201, 1, '2026-07-05 10:12:08', '2026-07-05 10:12:08', '', 'Women’s Mental Wellness mental', '', 'inherit', 'closed', 'closed', '', 'womens-mental-wellness-mental', '', '', '2026-07-05 10:12:08', '2026-07-05 10:12:08', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg', 0, 'attachment', 'image/jpeg', 0),
(202, 1, '2026-07-05 10:12:36', '2026-07-05 10:12:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mission-a.jpg\" alt=\"mission a\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:12:36', '2026-07-05 10:12:36', '', 12, 'https://mrarif.me/everwell/?p=202', 0, 'revision', '', 0),
(203, 1, '2026-07-05 10:12:36', '2026-07-05 10:12:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mission-a.jpg\" alt=\"mission a\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:12:36', '2026-07-05 10:12:36', '', 12, 'https://mrarif.me/everwell/?p=203', 0, 'revision', '', 0),
(207, 1, '2026-07-05 10:13:25', '2026-07-05 10:13:25', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:13:25', '2026-07-05 10:13:25', '', 12, 'https://mrarif.me/everwell/?p=207', 0, 'revision', '', 0),
(204, 1, '2026-07-05 10:12:36', '2026-07-05 10:12:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"Women’s Mental Wellness mental\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:12:36', '2026-07-05 10:12:36', '', 12, 'https://mrarif.me/everwell/?p=204', 0, 'revision', '', 0),
(205, 1, '2026-07-05 10:13:25', '2026-07-05 10:13:25', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"Women’s Mental Wellness mental\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:13:25', '2026-07-05 10:13:25', '', 12, 'https://mrarif.me/everwell/?p=205', 0, 'revision', '', 0),
(206, 1, '2026-07-05 10:13:25', '2026-07-05 10:13:25', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n																			<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"Women’s Mental Wellness mental\">\n					<h5>\n						Women’s Mental Wellness					</h5>\n								<p>Supporting women through every stage of life. Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>							\n								<a																			href=\"#\"																																					\n											Learn More										\n																										</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:13:25', '2026-07-05 10:13:25', '', 12, 'https://mrarif.me/everwell/?p=206', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(208, 1, '2026-07-05 10:13:54', '2026-07-05 10:13:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:13:54', '2026-07-05 10:13:54', '', 12, 'https://mrarif.me/everwell/?p=208', 0, 'revision', '', 0),
(209, 1, '2026-07-05 10:13:54', '2026-07-05 10:13:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:13:54', '2026-07-05 10:13:54', '', 12, 'https://mrarif.me/everwell/?p=209', 0, 'revision', '', 0),
(210, 1, '2026-07-05 10:13:54', '2026-07-05 10:13:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:13:54', '2026-07-05 10:13:54', '', 12, 'https://mrarif.me/everwell/?p=210', 0, 'revision', '', 0),
(211, 1, '2026-07-05 10:14:46', '2026-07-05 10:14:46', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:14:46', '2026-07-05 10:14:46', '', 12, 'https://mrarif.me/everwell/?p=211', 0, 'revision', '', 0),
(212, 1, '2026-07-05 10:14:46', '2026-07-05 10:14:46', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:14:46', '2026-07-05 10:14:46', '', 12, 'https://mrarif.me/everwell/?p=212', 0, 'revision', '', 0),
(222, 1, '2026-07-05 10:17:24', '2026-07-05 10:17:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:24', '2026-07-05 10:17:24', '', 12, 'https://mrarif.me/everwell/?p=222', 0, 'revision', '', 0),
(213, 1, '2026-07-05 10:14:46', '2026-07-05 10:14:46', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:14:46', '2026-07-05 10:14:46', '', 12, 'https://mrarif.me/everwell/?p=213', 0, 'revision', '', 0),
(214, 1, '2026-07-05 10:15:57', '2026-07-05 10:15:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:15:57', '2026-07-05 10:15:57', '', 12, 'https://mrarif.me/everwell/?p=214', 0, 'revision', '', 0),
(215, 1, '2026-07-05 10:15:57', '2026-07-05 10:15:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:15:57', '2026-07-05 10:15:57', '', 12, 'https://mrarif.me/everwell/?p=215', 0, 'revision', '', 0),
(216, 1, '2026-07-05 10:15:57', '2026-07-05 10:15:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:15:57', '2026-07-05 10:15:57', '', 12, 'https://mrarif.me/everwell/?p=216', 0, 'revision', '', 0),
(217, 1, '2026-07-05 10:16:56', '2026-07-05 10:16:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:16:56', '2026-07-05 10:16:56', '', 12, 'https://mrarif.me/everwell/?p=217', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(218, 1, '2026-07-05 10:16:56', '2026-07-05 10:16:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:16:56', '2026-07-05 10:16:56', '', 12, 'https://mrarif.me/everwell/?p=218', 0, 'revision', '', 0),
(219, 1, '2026-07-05 10:16:56', '2026-07-05 10:16:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:16:56', '2026-07-05 10:16:56', '', 12, 'https://mrarif.me/everwell/?p=219', 0, 'revision', '', 0),
(220, 1, '2026-07-05 10:17:23', '2026-07-05 10:17:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:23', '2026-07-05 10:17:23', '', 12, 'https://mrarif.me/everwell/?p=220', 0, 'revision', '', 0),
(221, 1, '2026-07-05 10:17:23', '2026-07-05 10:17:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:23', '2026-07-05 10:17:23', '', 12, 'https://mrarif.me/everwell/?p=221', 0, 'revision', '', 0),
(223, 1, '2026-07-05 10:17:41', '2026-07-05 10:17:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:41', '2026-07-05 10:17:41', '', 12, 'https://mrarif.me/everwell/?p=223', 0, 'revision', '', 0),
(224, 1, '2026-07-05 10:17:41', '2026-07-05 10:17:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:41', '2026-07-05 10:17:41', '', 12, 'https://mrarif.me/everwell/?p=224', 0, 'revision', '', 0),
(225, 1, '2026-07-05 10:17:41', '2026-07-05 10:17:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:41', '2026-07-05 10:17:41', '', 12, 'https://mrarif.me/everwell/?p=225', 0, 'revision', '', 0),
(226, 1, '2026-07-05 10:17:57', '2026-07-05 10:17:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:57', '2026-07-05 10:17:57', '', 12, 'https://mrarif.me/everwell/?p=226', 0, 'revision', '', 0),
(227, 1, '2026-07-05 10:17:57', '2026-07-05 10:17:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:57', '2026-07-05 10:17:57', '', 12, 'https://mrarif.me/everwell/?p=227', 0, 'revision', '', 0),
(228, 1, '2026-07-05 10:17:57', '2026-07-05 10:17:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"668\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:17:57', '2026-07-05 10:17:57', '', 12, 'https://mrarif.me/everwell/?p=228', 0, 'revision', '', 0),
(230, 1, '2026-07-05 10:20:01', '2026-07-05 10:20:01', '', 'Women’s Mental Wellness home', '', 'inherit', 'closed', 'closed', '', 'womens-mental-wellness-home', '', '', '2026-07-05 10:20:01', '2026-07-05 10:20:01', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp', 0, 'attachment', 'image/webp', 0),
(231, 1, '2026-07-05 10:23:52', '2026-07-05 10:23:52', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"668\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:23:52', '2026-07-05 10:23:52', '', 12, 'https://mrarif.me/everwell/?p=231', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(232, 1, '2026-07-05 10:23:52', '2026-07-05 10:23:52', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"668\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:23:52', '2026-07-05 10:23:52', '', 12, 'https://mrarif.me/everwell/?p=232', 0, 'revision', '', 0),
(298, 1, '2026-07-05 10:50:02', '2026-07-05 10:50:02', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:50:02', '2026-07-05 10:50:02', '', 12, 'https://mrarif.me/everwell/?p=298', 0, 'revision', '', 0),
(233, 1, '2026-07-05 10:23:52', '2026-07-05 10:23:52', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:23:52', '2026-07-05 10:23:52', '', 12, 'https://mrarif.me/everwell/?p=233', 0, 'revision', '', 0),
(234, 1, '2026-07-05 10:26:56', '2026-07-05 10:26:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:26:56', '2026-07-05 10:26:56', '', 12, 'https://mrarif.me/everwell/?p=234', 0, 'revision', '', 0),
(235, 1, '2026-07-05 10:26:56', '2026-07-05 10:26:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:26:56', '2026-07-05 10:26:56', '', 12, 'https://mrarif.me/everwell/?p=235', 0, 'revision', '', 0),
(236, 1, '2026-07-05 10:26:57', '2026-07-05 10:26:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:26:57', '2026-07-05 10:26:57', '', 12, 'https://mrarif.me/everwell/?p=236', 0, 'revision', '', 0),
(237, 1, '2026-07-05 10:27:15', '2026-07-05 10:27:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:27:15', '2026-07-05 10:27:15', '', 12, 'https://mrarif.me/everwell/?p=237', 0, 'revision', '', 0),
(238, 1, '2026-07-05 10:27:15', '2026-07-05 10:27:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:27:15', '2026-07-05 10:27:15', '', 12, 'https://mrarif.me/everwell/?p=238', 0, 'revision', '', 0),
(239, 1, '2026-07-05 10:27:15', '2026-07-05 10:27:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:27:15', '2026-07-05 10:27:15', '', 12, 'https://mrarif.me/everwell/?p=239', 0, 'revision', '', 0),
(240, 1, '2026-07-05 10:28:19', '2026-07-05 10:28:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:28:19', '2026-07-05 10:28:19', '', 12, 'https://mrarif.me/everwell/?p=240', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(241, 1, '2026-07-05 10:28:19', '2026-07-05 10:28:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:28:19', '2026-07-05 10:28:19', '', 12, 'https://mrarif.me/everwell/?p=241', 0, 'revision', '', 0),
(242, 1, '2026-07-05 10:28:19', '2026-07-05 10:28:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:28:19', '2026-07-05 10:28:19', '', 12, 'https://mrarif.me/everwell/?p=242', 0, 'revision', '', 0),
(243, 1, '2026-07-05 10:31:57', '2026-07-05 10:31:57', '', 'Botox a', '', 'inherit', 'closed', 'closed', '', 'botox-a', '', '', '2026-07-05 10:31:57', '2026-07-05 10:31:57', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(244, 1, '2026-07-05 10:32:08', '2026-07-05 10:32:08', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:32:08', '2026-07-05 10:32:08', '', 12, 'https://mrarif.me/everwell/?p=244', 0, 'revision', '', 0),
(245, 1, '2026-07-05 10:32:08', '2026-07-05 10:32:08', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:32:08', '2026-07-05 10:32:08', '', 12, 'https://mrarif.me/everwell/?p=245', 0, 'revision', '', 0),
(246, 1, '2026-07-05 10:32:08', '2026-07-05 10:32:08', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:32:08', '2026-07-05 10:32:08', '', 12, 'https://mrarif.me/everwell/?p=246', 0, 'revision', '', 0),
(247, 1, '2026-07-05 10:32:26', '2026-07-05 10:32:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:32:26', '2026-07-05 10:32:26', '', 12, 'https://mrarif.me/everwell/?p=247', 0, 'revision', '', 0),
(248, 1, '2026-07-05 10:32:27', '2026-07-05 10:32:27', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:32:27', '2026-07-05 10:32:27', '', 12, 'https://mrarif.me/everwell/?p=248', 0, 'revision', '', 0),
(249, 1, '2026-07-05 10:32:27', '2026-07-05 10:32:27', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:32:27', '2026-07-05 10:32:27', '', 12, 'https://mrarif.me/everwell/?p=249', 0, 'revision', '', 0),
(250, 1, '2026-07-05 10:34:56', '2026-07-05 10:34:56', '', 'Medical Weight Management a', '', 'inherit', 'closed', 'closed', '', 'medical-weight-management-a', '', '', '2026-07-05 10:34:56', '2026-07-05 10:34:56', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp', 0, 'attachment', 'image/webp', 0),
(251, 1, '2026-07-05 10:35:01', '2026-07-05 10:35:01', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:01', '2026-07-05 10:35:01', '', 12, 'https://mrarif.me/everwell/?p=251', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(252, 1, '2026-07-05 10:35:01', '2026-07-05 10:35:01', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:01', '2026-07-05 10:35:01', '', 12, 'https://mrarif.me/everwell/?p=252', 0, 'revision', '', 0),
(253, 1, '2026-07-05 10:35:01', '2026-07-05 10:35:01', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:01', '2026-07-05 10:35:01', '', 12, 'https://mrarif.me/everwell/?p=253', 0, 'revision', '', 0),
(254, 1, '2026-07-05 10:35:34', '2026-07-05 10:35:34', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:34', '2026-07-05 10:35:34', '', 12, 'https://mrarif.me/everwell/?p=254', 0, 'revision', '', 0),
(255, 1, '2026-07-05 10:35:34', '2026-07-05 10:35:34', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:34', '2026-07-05 10:35:34', '', 12, 'https://mrarif.me/everwell/?p=255', 0, 'revision', '', 0),
(256, 1, '2026-07-05 10:35:34', '2026-07-05 10:35:34', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:34', '2026-07-05 10:35:34', '', 12, 'https://mrarif.me/everwell/?p=256', 0, 'revision', '', 0),
(257, 1, '2026-07-05 10:35:49', '2026-07-05 10:35:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:49', '2026-07-05 10:35:49', '', 12, 'https://mrarif.me/everwell/?p=257', 0, 'revision', '', 0),
(258, 1, '2026-07-05 10:35:49', '2026-07-05 10:35:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:49', '2026-07-05 10:35:49', '', 12, 'https://mrarif.me/everwell/?p=258', 0, 'revision', '', 0),
(266, 1, '2026-07-05 10:38:11', '2026-07-05 10:38:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:38:11', '2026-07-05 10:38:11', '', 12, 'https://mrarif.me/everwell/?p=266', 0, 'revision', '', 0),
(259, 1, '2026-07-05 10:35:49', '2026-07-05 10:35:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:35:49', '2026-07-05 10:35:49', '', 12, 'https://mrarif.me/everwell/?p=259', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(260, 1, '2026-07-05 10:36:11', '2026-07-05 10:36:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:36:11', '2026-07-05 10:36:11', '', 12, 'https://mrarif.me/everwell/?p=260', 0, 'revision', '', 0),
(261, 1, '2026-07-05 10:36:11', '2026-07-05 10:36:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:36:11', '2026-07-05 10:36:11', '', 12, 'https://mrarif.me/everwell/?p=261', 0, 'revision', '', 0),
(262, 1, '2026-07-05 10:36:12', '2026-07-05 10:36:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:36:12', '2026-07-05 10:36:12', '', 12, 'https://mrarif.me/everwell/?p=262', 0, 'revision', '', 0),
(263, 1, '2026-07-05 10:38:06', '2026-07-05 10:38:06', '', 'Urgent Care s', '', 'inherit', 'closed', 'closed', '', 'urgent-care-s', '', '', '2026-07-05 10:38:06', '2026-07-05 10:38:06', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg', 0, 'attachment', 'image/jpeg', 0),
(264, 1, '2026-07-05 10:38:11', '2026-07-05 10:38:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:38:11', '2026-07-05 10:38:11', '', 12, 'https://mrarif.me/everwell/?p=264', 0, 'revision', '', 0),
(265, 1, '2026-07-05 10:38:11', '2026-07-05 10:38:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:38:11', '2026-07-05 10:38:11', '', 12, 'https://mrarif.me/everwell/?p=265', 0, 'revision', '', 0),
(267, 1, '2026-07-05 10:38:55', '2026-07-05 10:38:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:38:55', '2026-07-05 10:38:55', '', 12, 'https://mrarif.me/everwell/?p=267', 0, 'revision', '', 0),
(268, 1, '2026-07-05 10:38:55', '2026-07-05 10:38:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"#\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:38:55', '2026-07-05 10:38:55', '', 12, 'https://mrarif.me/everwell/?p=268', 0, 'revision', '', 0),
(282, 1, '2026-07-05 10:46:24', '2026-07-05 10:46:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:46:24', '2026-07-05 10:46:24', '', 12, 'https://mrarif.me/everwell/?p=282', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(279, 1, '2026-07-05 10:42:22', '2026-07-05 10:42:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:42:22', '2026-07-05 10:42:22', '', 12, 'https://mrarif.me/everwell/?p=279', 0, 'revision', '', 0),
(269, 1, '2026-07-05 10:38:55', '2026-07-05 10:38:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:38:55', '2026-07-05 10:38:55', '', 12, 'https://mrarif.me/everwell/?p=269', 0, 'revision', '', 0),
(270, 1, '2026-07-05 10:40:44', '2026-07-05 10:40:44', '', 'Birth Control Consultations a', '', 'inherit', 'closed', 'closed', '', 'birth-control-consultations-a', '', '', '2026-07-05 10:40:44', '2026-07-05 10:40:44', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(271, 1, '2026-07-05 10:40:49', '2026-07-05 10:40:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:40:49', '2026-07-05 10:40:49', '', 12, 'https://mrarif.me/everwell/?p=271', 0, 'revision', '', 0),
(272, 1, '2026-07-05 10:40:49', '2026-07-05 10:40:49', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:40:49', '2026-07-05 10:40:49', '', 12, 'https://mrarif.me/everwell/?p=272', 0, 'revision', '', 0),
(276, 1, '2026-07-05 10:41:56', '2026-07-05 10:41:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:41:56', '2026-07-05 10:41:56', '', 12, 'https://mrarif.me/everwell/?p=276', 0, 'revision', '', 0),
(273, 1, '2026-07-05 10:40:50', '2026-07-05 10:40:50', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:40:50', '2026-07-05 10:40:50', '', 12, 'https://mrarif.me/everwell/?p=273', 0, 'revision', '', 0),
(274, 1, '2026-07-05 10:41:55', '2026-07-05 10:41:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:41:55', '2026-07-05 10:41:55', '', 12, 'https://mrarif.me/everwell/?p=274', 0, 'revision', '', 0),
(275, 1, '2026-07-05 10:41:55', '2026-07-05 10:41:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:41:55', '2026-07-05 10:41:55', '', 12, 'https://mrarif.me/everwell/?p=275', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(277, 1, '2026-07-05 10:42:22', '2026-07-05 10:42:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:42:22', '2026-07-05 10:42:22', '', 12, 'https://mrarif.me/everwell/?p=277', 0, 'revision', '', 0),
(278, 1, '2026-07-05 10:42:22', '2026-07-05 10:42:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Convenient, compassionate care when you need it most.Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:42:22', '2026-07-05 10:42:22', '', 12, 'https://mrarif.me/everwell/?p=278', 0, 'revision', '', 0),
(280, 1, '2026-07-05 10:46:24', '2026-07-05 10:46:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:46:24', '2026-07-05 10:46:24', '', 12, 'https://mrarif.me/everwell/?p=280', 0, 'revision', '', 0),
(281, 1, '2026-07-05 10:46:24', '2026-07-05 10:46:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"#\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:46:24', '2026-07-05 10:46:24', '', 12, 'https://mrarif.me/everwell/?p=281', 0, 'revision', '', 0),
(283, 1, '2026-07-05 10:46:34', '2026-07-05 10:46:34', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:46:34', '2026-07-05 10:46:34', '', 12, 'https://mrarif.me/everwell/?p=283', 0, 'revision', '', 0),
(284, 1, '2026-07-05 10:46:34', '2026-07-05 10:46:34', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:46:34', '2026-07-05 10:46:34', '', 12, 'https://mrarif.me/everwell/?p=284', 0, 'revision', '', 0),
(285, 1, '2026-07-05 10:46:35', '2026-07-05 10:46:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:46:35', '2026-07-05 10:46:35', '', 12, 'https://mrarif.me/everwell/?p=285', 0, 'revision', '', 0),
(286, 1, '2026-07-05 10:47:06', '2026-07-05 10:47:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:47:06', '2026-07-05 10:47:06', '', 12, 'https://mrarif.me/everwell/?p=286', 0, 'revision', '', 0),
(287, 1, '2026-07-05 10:47:06', '2026-07-05 10:47:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:47:06', '2026-07-05 10:47:06', '', 12, 'https://mrarif.me/everwell/?p=287', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(288, 1, '2026-07-05 10:47:07', '2026-07-05 10:47:07', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:47:07', '2026-07-05 10:47:07', '', 12, 'https://mrarif.me/everwell/?p=288', 0, 'revision', '', 0),
(289, 1, '2026-07-05 10:47:37', '2026-07-05 10:47:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:47:37', '2026-07-05 10:47:37', '', 12, 'https://mrarif.me/everwell/?p=289', 0, 'revision', '', 0),
(290, 1, '2026-07-05 10:47:37', '2026-07-05 10:47:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:47:37', '2026-07-05 10:47:37', '', 12, 'https://mrarif.me/everwell/?p=290', 0, 'revision', '', 0),
(291, 1, '2026-07-05 10:47:38', '2026-07-05 10:47:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:47:38', '2026-07-05 10:47:38', '', 12, 'https://mrarif.me/everwell/?p=291', 0, 'revision', '', 0),
(293, 1, '2026-07-05 10:49:28', '2026-07-05 10:49:28', '', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-05 10:49:28', '2026-07-05 10:49:28', '', 16, 'https://mrarif.me/everwell/?p=293', 0, 'revision', '', 0),
(294, 1, '2026-07-05 10:49:28', '2026-07-05 10:49:28', '', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-05 10:49:28', '2026-07-05 10:49:28', '', 16, 'https://mrarif.me/everwell/?p=294', 0, 'revision', '', 0),
(771, 1, '2026-07-07 07:43:17', '2026-07-07 07:43:17', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgent-care-real-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:43:17', '2026-07-07 07:43:17', '', 16, 'https://mrarif.me/everwell/?p=771', 0, 'revision', '', 0),
(295, 1, '2026-07-05 10:49:28', '2026-07-05 10:49:28', '<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-05 10:49:28', '2026-07-05 10:49:28', '', 16, 'https://mrarif.me/everwell/?p=295', 0, 'revision', '', 0),
(296, 1, '2026-07-05 10:50:02', '2026-07-05 10:50:02', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:50:02', '2026-07-05 10:50:02', '', 12, 'https://mrarif.me/everwell/?p=296', 0, 'revision', '', 0),
(297, 1, '2026-07-05 10:50:02', '2026-07-05 10:50:02', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:50:02', '2026-07-05 10:50:02', '', 12, 'https://mrarif.me/everwell/?p=297', 0, 'revision', '', 0),
(299, 1, '2026-07-05 10:53:54', '2026-07-05 10:53:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:53:54', '2026-07-05 10:53:54', '', 12, 'https://mrarif.me/everwell/?p=299', 0, 'revision', '', 0),
(300, 1, '2026-07-05 10:53:54', '2026-07-05 10:53:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:53:54', '2026-07-05 10:53:54', '', 12, 'https://mrarif.me/everwell/?p=300', 0, 'revision', '', 0),
(301, 1, '2026-07-05 10:53:54', '2026-07-05 10:53:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:53:54', '2026-07-05 10:53:54', '', 12, 'https://mrarif.me/everwell/?p=301', 0, 'revision', '', 0),
(326, 1, '2026-07-05 11:16:09', '2026-07-05 11:16:09', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:16:09', '2026-07-05 11:16:09', '', 12, 'https://mrarif.me/everwell/?p=326', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(322, 1, '2026-07-05 11:05:33', '2026-07-05 11:05:33', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n							<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:05:33', '2026-07-05 11:05:33', '', 12, 'https://mrarif.me/everwell/?p=322', 0, 'revision', '', 0),
(316, 1, '2026-07-05 11:04:37', '2026-07-05 11:04:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:04:37', '2026-07-05 11:04:37', '', 12, 'https://mrarif.me/everwell/?p=316', 0, 'revision', '', 0),
(309, 1, '2026-07-05 10:57:00', '2026-07-05 10:57:00', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2_00000057128337380974478410000015111628327648397705_\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Icon\"><path id=\"_26\" d=\"m341 341c-46.9 46.9-123.1 46.9-170 0s-46.9-123.1 0-170 123.1-46.9 170 0 46.9 123.1 0 170z\"></path></g></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:57:00', '2026-07-05 10:57:00', '', 12, 'https://mrarif.me/everwell/?p=309', 0, 'revision', '', 0),
(303, 1, '2026-07-05 10:56:36', '2026-07-05 10:56:36', '', 'Bipolar-Disorder-Management-av.jpg', '', 'inherit', 'closed', 'closed', '', 'bipolar-disorder-management-av-jpg', '', '', '2026-07-05 10:56:36', '2026-07-05 10:56:36', '', 0, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Bipolar-Disorder-Management-av.jpg', 0, 'attachment', 'image/jpeg', 0),
(304, 1, '2026-07-05 10:56:37', '2026-07-05 10:56:37', '', 'rec_10024160.svg', '', 'inherit', 'closed', 'closed', '', 'rec_10024160-svg', '', '', '2026-07-05 10:56:37', '2026-07-05 10:56:37', '', 0, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/rec_10024160.svg', 0, 'attachment', 'image/svg+xml', 0),
(307, 1, '2026-07-05 10:56:59', '2026-07-05 10:56:59', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:56:59', '2026-07-05 10:56:59', '', 12, 'https://mrarif.me/everwell/?p=307', 0, 'revision', '', 0),
(308, 1, '2026-07-05 10:57:00', '2026-07-05 10:57:00', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:57:00', '2026-07-05 10:57:00', '', 12, 'https://mrarif.me/everwell/?p=308', 0, 'revision', '', 0),
(310, 1, '2026-07-05 10:57:42', '2026-07-05 10:57:42', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2_00000057128337380974478410000015111628327648397705_\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Icon\"><path id=\"_26\" d=\"m341 341c-46.9 46.9-123.1 46.9-170 0s-46.9-123.1 0-170 123.1-46.9 170 0 46.9 123.1 0 170z\"></path></g></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:57:42', '2026-07-05 10:57:42', '', 12, 'https://mrarif.me/everwell/?p=310', 0, 'revision', '', 0),
(311, 1, '2026-07-05 10:57:42', '2026-07-05 10:57:42', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2_00000057128337380974478410000015111628327648397705_\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Icon\"><path id=\"_26\" d=\"m341 341c-46.9 46.9-123.1 46.9-170 0s-46.9-123.1 0-170 123.1-46.9 170 0 46.9 123.1 0 170z\"></path></g></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:57:42', '2026-07-05 10:57:42', '', 12, 'https://mrarif.me/everwell/?p=311', 0, 'revision', '', 0),
(312, 1, '2026-07-05 10:57:42', '2026-07-05 10:57:42', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2_00000057128337380974478410000015111628327648397705_\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Icon\"><path id=\"_26\" d=\"m341 341c-46.9 46.9-123.1 46.9-170 0s-46.9-123.1 0-170 123.1-46.9 170 0 46.9 123.1 0 170z\"></path></g></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 10:57:42', '2026-07-05 10:57:42', '', 12, 'https://mrarif.me/everwell/?p=312', 0, 'revision', '', 0),
(317, 1, '2026-07-05 11:04:55', '2026-07-05 11:04:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:04:55', '2026-07-05 11:04:55', '', 12, 'https://mrarif.me/everwell/?p=317', 0, 'revision', '', 0),
(314, 1, '2026-07-05 11:04:36', '2026-07-05 11:04:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2_00000057128337380974478410000015111628327648397705_\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Icon\"><path id=\"_26\" d=\"m341 341c-46.9 46.9-123.1 46.9-170 0s-46.9-123.1 0-170 123.1-46.9 170 0 46.9 123.1 0 170z\"></path></g></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:04:36', '2026-07-05 11:04:36', '', 12, 'https://mrarif.me/everwell/?p=314', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(315, 1, '2026-07-05 11:04:36', '2026-07-05 11:04:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n											<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2_00000057128337380974478410000015111628327648397705_\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g id=\"Icon\"><path id=\"_26\" d=\"m341 341c-46.9 46.9-123.1 46.9-170 0s-46.9-123.1 0-170 123.1-46.9 170 0 46.9 123.1 0 170z\"></path></g></svg>						\n										Contact Us\n									</li>\n						</ul>\n							<h3>Get In Touch With Us</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:04:36', '2026-07-05 11:04:36', '', 12, 'https://mrarif.me/everwell/?p=315', 0, 'revision', '', 0),
(318, 1, '2026-07-05 11:04:55', '2026-07-05 11:04:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:04:55', '2026-07-05 11:04:55', '', 12, 'https://mrarif.me/everwell/?p=318', 0, 'revision', '', 0),
(319, 1, '2026-07-05 11:04:55', '2026-07-05 11:04:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:04:55', '2026-07-05 11:04:55', '', 12, 'https://mrarif.me/everwell/?p=319', 0, 'revision', '', 0),
(320, 1, '2026-07-05 11:05:33', '2026-07-05 11:05:33', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:05:33', '2026-07-05 11:05:33', '', 12, 'https://mrarif.me/everwell/?p=320', 0, 'revision', '', 0),
(321, 1, '2026-07-05 11:05:33', '2026-07-05 11:05:33', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n												<a href=\"https://mrarif.me/serenesoundwellness/book-and-appointment/\">\n									Schedule an Appointment\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:05:33', '2026-07-05 11:05:33', '', 12, 'https://mrarif.me/everwell/?p=321', 0, 'revision', '', 0),
(323, 1, '2026-07-05 11:15:55', '2026-07-05 11:15:55', '', 'appointment a', '', 'inherit', 'closed', 'closed', '', 'appointment-a', '', '', '2026-07-05 11:15:55', '2026-07-05 11:15:55', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/appointment-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(324, 1, '2026-07-05 11:16:09', '2026-07-05 11:16:09', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n							<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:16:09', '2026-07-05 11:16:09', '', 12, 'https://mrarif.me/everwell/?p=324', 0, 'revision', '', 0),
(325, 1, '2026-07-05 11:16:09', '2026-07-05 11:16:09', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n				<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z\"></path></svg>				\n									<h5>\n							Open Hours						\n					</h5>\n							Mon - Fri						\n						08:00 AM - 04:00 PM					\n							Sat - Sun						\n						Closed					\n							<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:16:09', '2026-07-05 11:16:09', '', 12, 'https://mrarif.me/everwell/?p=325', 0, 'revision', '', 0),
(327, 1, '2026-07-05 11:16:51', '2026-07-05 11:16:51', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:16:51', '2026-07-05 11:16:51', '', 12, 'https://mrarif.me/everwell/?p=327', 0, 'revision', '', 0),
(328, 1, '2026-07-05 11:16:51', '2026-07-05 11:16:51', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:16:51', '2026-07-05 11:16:51', '', 12, 'https://mrarif.me/everwell/?p=328', 0, 'revision', '', 0),
(329, 1, '2026-07-05 11:16:51', '2026-07-05 11:16:51', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:16:51', '2026-07-05 11:16:51', '', 12, 'https://mrarif.me/everwell/?p=329', 0, 'revision', '', 0),
(330, 1, '2026-07-05 11:17:19', '2026-07-05 11:17:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:17:19', '2026-07-05 11:17:19', '', 12, 'https://mrarif.me/everwell/?p=330', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(331, 1, '2026-07-05 11:17:19', '2026-07-05 11:17:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:17:19', '2026-07-05 11:17:19', '', 12, 'https://mrarif.me/everwell/?p=331', 0, 'revision', '', 0),
(332, 1, '2026-07-05 11:17:19', '2026-07-05 11:17:19', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:17:19', '2026-07-05 11:17:19', '', 12, 'https://mrarif.me/everwell/?p=332', 0, 'revision', '', 0),
(333, 1, '2026-07-05 11:17:40', '2026-07-05 11:17:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:17:40', '2026-07-05 11:17:40', '', 12, 'https://mrarif.me/everwell/?p=333', 0, 'revision', '', 0),
(334, 1, '2026-07-05 11:17:40', '2026-07-05 11:17:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:17:40', '2026-07-05 11:17:40', '', 12, 'https://mrarif.me/everwell/?p=334', 0, 'revision', '', 0),
(335, 1, '2026-07-05 11:17:40', '2026-07-05 11:17:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:17:40', '2026-07-05 11:17:40', '', 12, 'https://mrarif.me/everwell/?p=335', 0, 'revision', '', 0),
(336, 1, '2026-07-05 11:18:41', '2026-07-05 11:18:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:18:41', '2026-07-05 11:18:41', '', 12, 'https://mrarif.me/everwell/?p=336', 0, 'revision', '', 0),
(337, 1, '2026-07-05 11:18:41', '2026-07-05 11:18:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:18:41', '2026-07-05 11:18:41', '', 12, 'https://mrarif.me/everwell/?p=337', 0, 'revision', '', 0),
(338, 1, '2026-07-05 11:18:41', '2026-07-05 11:18:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:18:41', '2026-07-05 11:18:41', '', 12, 'https://mrarif.me/everwell/?p=338', 0, 'revision', '', 0),
(339, 1, '2026-07-05 11:19:03', '2026-07-05 11:19:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:19:03', '2026-07-05 11:19:03', '', 12, 'https://mrarif.me/everwell/?p=339', 0, 'revision', '', 0),
(340, 1, '2026-07-05 11:19:03', '2026-07-05 11:19:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:19:03', '2026-07-05 11:19:03', '', 12, 'https://mrarif.me/everwell/?p=340', 0, 'revision', '', 0),
(341, 1, '2026-07-05 11:19:04', '2026-07-05 11:19:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:19:04', '2026-07-05 11:19:04', '', 12, 'https://mrarif.me/everwell/?p=341', 0, 'revision', '', 0),
(342, 1, '2026-07-05 11:19:16', '2026-07-05 11:19:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:19:16', '2026-07-05 11:19:16', '', 12, 'https://mrarif.me/everwell/?p=342', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(343, 1, '2026-07-05 11:19:16', '2026-07-05 11:19:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:19:16', '2026-07-05 11:19:16', '', 12, 'https://mrarif.me/everwell/?p=343', 0, 'revision', '', 0),
(344, 1, '2026-07-05 11:19:16', '2026-07-05 11:19:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:19:16', '2026-07-05 11:19:16', '', 12, 'https://mrarif.me/everwell/?p=344', 0, 'revision', '', 0),
(345, 1, '2026-07-05 11:21:38', '2026-07-05 11:21:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:21:38', '2026-07-05 11:21:38', '', 12, 'https://mrarif.me/everwell/?p=345', 0, 'revision', '', 0),
(346, 1, '2026-07-05 11:21:38', '2026-07-05 11:21:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:21:38', '2026-07-05 11:21:38', '', 12, 'https://mrarif.me/everwell/?p=346', 0, 'revision', '', 0),
(347, 1, '2026-07-05 11:21:38', '2026-07-05 11:21:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:21:38', '2026-07-05 11:21:38', '', 12, 'https://mrarif.me/everwell/?p=347', 0, 'revision', '', 0),
(348, 1, '2026-07-05 11:22:02', '2026-07-05 11:22:02', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:02', '2026-07-05 11:22:02', '', 12, 'https://mrarif.me/everwell/?p=348', 0, 'revision', '', 0),
(349, 1, '2026-07-05 11:22:02', '2026-07-05 11:22:02', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:02', '2026-07-05 11:22:02', '', 12, 'https://mrarif.me/everwell/?p=349', 0, 'revision', '', 0),
(350, 1, '2026-07-05 11:22:02', '2026-07-05 11:22:02', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:02', '2026-07-05 11:22:02', '', 12, 'https://mrarif.me/everwell/?p=350', 0, 'revision', '', 0),
(351, 1, '2026-07-05 11:22:26', '2026-07-05 11:22:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:26', '2026-07-05 11:22:26', '', 12, 'https://mrarif.me/everwell/?p=351', 0, 'revision', '', 0),
(352, 1, '2026-07-05 11:22:26', '2026-07-05 11:22:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:26', '2026-07-05 11:22:26', '', 12, 'https://mrarif.me/everwell/?p=352', 0, 'revision', '', 0),
(353, 1, '2026-07-05 11:22:26', '2026-07-05 11:22:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:26', '2026-07-05 11:22:26', '', 12, 'https://mrarif.me/everwell/?p=353', 0, 'revision', '', 0),
(354, 1, '2026-07-05 11:22:36', '2026-07-05 11:22:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:36', '2026-07-05 11:22:36', '', 12, 'https://mrarif.me/everwell/?p=354', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(355, 1, '2026-07-05 11:22:37', '2026-07-05 11:22:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:37', '2026-07-05 11:22:37', '', 12, 'https://mrarif.me/everwell/?p=355', 0, 'revision', '', 0),
(356, 1, '2026-07-05 11:22:37', '2026-07-05 11:22:37', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:22:37', '2026-07-05 11:22:37', '', 12, 'https://mrarif.me/everwell/?p=356', 0, 'revision', '', 0),
(357, 1, '2026-07-05 11:23:36', '2026-07-05 11:23:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:23:36', '2026-07-05 11:23:36', '', 12, 'https://mrarif.me/everwell/?p=357', 0, 'revision', '', 0),
(358, 1, '2026-07-05 11:23:36', '2026-07-05 11:23:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:23:36', '2026-07-05 11:23:36', '', 12, 'https://mrarif.me/everwell/?p=358', 0, 'revision', '', 0),
(359, 1, '2026-07-05 11:23:36', '2026-07-05 11:23:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:23:36', '2026-07-05 11:23:36', '', 12, 'https://mrarif.me/everwell/?p=359', 0, 'revision', '', 0),
(367, 1, '2026-07-05 11:27:51', '2026-07-05 11:27:51', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:27:51', '2026-07-05 11:27:51', '', 66, 'https://mrarif.me/everwell/?p=367', 0, 'revision', '', 0),
(361, 1, '2026-07-05 11:26:40', '2026-07-05 11:26:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:26:40', '2026-07-05 11:26:40', '', 12, 'https://mrarif.me/everwell/?p=361', 0, 'revision', '', 0),
(362, 1, '2026-07-05 11:26:40', '2026-07-05 11:26:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#\">\n									Learn More\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:26:40', '2026-07-05 11:26:40', '', 12, 'https://mrarif.me/everwell/?p=362', 0, 'revision', '', 0),
(363, 1, '2026-07-05 11:26:40', '2026-07-05 11:26:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:26:40', '2026-07-05 11:26:40', '', 12, 'https://mrarif.me/everwell/?p=363', 0, 'revision', '', 0),
(364, 1, '2026-07-05 11:27:35', '2026-07-05 11:27:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:27:35', '2026-07-05 11:27:35', '', 12, 'https://mrarif.me/everwell/?p=364', 0, 'revision', '', 0),
(365, 1, '2026-07-05 11:27:35', '2026-07-05 11:27:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:27:35', '2026-07-05 11:27:35', '', 12, 'https://mrarif.me/everwell/?p=365', 0, 'revision', '', 0),
(366, 1, '2026-07-05 11:27:36', '2026-07-05 11:27:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:27:36', '2026-07-05 11:27:36', '', 12, 'https://mrarif.me/everwell/?p=366', 0, 'revision', '', 0),
(368, 1, '2026-07-05 11:28:48', '2026-07-05 11:28:48', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:28:48', '2026-07-05 11:28:48', '', 12, 'https://mrarif.me/everwell/?p=368', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(369, 1, '2026-07-05 11:28:48', '2026-07-05 11:28:48', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:28:48', '2026-07-05 11:28:48', '', 12, 'https://mrarif.me/everwell/?p=369', 0, 'revision', '', 0),
(370, 1, '2026-07-05 11:28:48', '2026-07-05 11:28:48', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:28:48', '2026-07-05 11:28:48', '', 12, 'https://mrarif.me/everwell/?p=370', 0, 'revision', '', 0),
(371, 1, '2026-07-05 11:29:55', '2026-07-05 11:29:55', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:29:55', '2026-07-05 11:29:55', '', 66, 'https://mrarif.me/everwell/?p=371', 0, 'revision', '', 0),
(372, 1, '2026-07-05 11:30:07', '2026-07-05 11:30:07', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:30:07', '2026-07-05 11:30:07', '', 66, 'https://mrarif.me/everwell/?p=372', 0, 'revision', '', 0),
(373, 1, '2026-07-05 11:30:35', '2026-07-05 11:30:35', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:30:35', '2026-07-05 11:30:35', '', 66, 'https://mrarif.me/everwell/?p=373', 0, 'revision', '', 0),
(374, 1, '2026-07-05 11:30:41', '2026-07-05 11:30:41', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:30:41', '2026-07-05 11:30:41', '', 66, 'https://mrarif.me/everwell/?p=374', 0, 'revision', '', 0),
(375, 1, '2026-07-05 11:31:00', '2026-07-05 11:31:00', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:31:00', '2026-07-05 11:31:00', '', 66, 'https://mrarif.me/everwell/?p=375', 0, 'revision', '', 0),
(376, 1, '2026-07-05 11:31:10', '2026-07-05 11:31:10', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:31:10', '2026-07-05 11:31:10', '', 66, 'https://mrarif.me/everwell/?p=376', 0, 'revision', '', 0),
(377, 1, '2026-07-05 11:34:00', '2026-07-05 11:34:00', '<h6>About Us</h6>							\n				EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Areas We Serve</h6>							\n									<ul>\n							<li>\n										Serving the Shreveport-Bossier, LA and Homer, LA area\n									</li>\n						</ul>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'publish', 'closed', 'closed', '', 'elementor-footer-377', '', '', '2026-07-08 11:05:33', '2026-07-08 11:05:33', '', 0, 'https://mrarif.me/everwell/?post_type=elementor_library&#038;p=377', 0, 'elementor_library', '', 0),
(378, 1, '2026-07-05 11:31:36', '2026-07-05 11:31:36', '', 'Elementor Footer #377', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:31:36', '2026-07-05 11:31:36', '', 377, 'https://mrarif.me/everwell/?p=378', 0, 'revision', '', 0),
(459, 1, '2026-07-05 13:05:23', '2026-07-05 13:05:23', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h2>Get In Touch With Us</h2>', 'contact form two', '', 'publish', 'closed', 'closed', '', 'contact-form-two', '', '', '2026-07-05 13:05:24', '2026-07-05 13:05:24', '', 0, 'https://mrarif.me/everwell/?elementor_library=contact-form-two', 0, 'elementor_library', '', 0),
(460, 1, '2026-07-05 13:05:24', '2026-07-05 13:05:24', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h2>Get In Touch With Us</h2>', 'contact form two', '', 'inherit', 'closed', 'closed', '', '459-revision-v1', '', '', '2026-07-05 13:05:24', '2026-07-05 13:05:24', '', 459, 'https://mrarif.me/everwell/?p=460', 0, 'revision', '', 0),
(473, 1, '2026-07-05 13:21:21', '2026-07-05 13:21:21', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-05 13:21:21', '2026-07-05 13:21:21', '', 36, 'https://mrarif.me/everwell/?p=473', 0, 'revision', '', 0),
(381, 1, '2026-07-05 11:34:14', '2026-07-05 11:34:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:34:14', '2026-07-05 11:34:14', '', 12, 'https://mrarif.me/everwell/?p=381', 0, 'revision', '', 0),
(382, 1, '2026-07-05 11:34:14', '2026-07-05 11:34:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:34:14', '2026-07-05 11:34:14', '', 12, 'https://mrarif.me/everwell/?p=382', 0, 'revision', '', 0),
(383, 1, '2026-07-05 11:34:15', '2026-07-05 11:34:15', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:34:15', '2026-07-05 11:34:15', '', 12, 'https://mrarif.me/everwell/?p=383', 0, 'revision', '', 0),
(384, 1, '2026-07-05 11:37:03', '2026-07-05 11:37:03', '<h6>Contact Info</h6>		There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don’t look even slightly believable. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n							Copyright 2024 All Rights Reserved', 'Elementor Footer #377', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:37:03', '2026-07-05 11:37:03', '', 377, 'https://mrarif.me/everwell/?p=384', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(385, 1, '2026-07-05 11:37:03', '2026-07-05 11:37:03', '<h6>About Us</h6>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=2924%20Knight%20Street%20Building%203%2C%20Suite%20357%2C%20Shreveport%2C%20LA%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n					aria-label=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Elementor Footer #377', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:37:03', '2026-07-05 11:37:03', '', 377, 'https://mrarif.me/everwell/?p=385', 0, 'revision', '', 0),
(386, 1, '2026-07-05 11:37:57', '2026-07-05 11:37:57', '<h6>About Us</h6>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=2924%20Knight%20Street%20Building%203%2C%20Suite%20357%2C%20Shreveport%2C%20LA%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n					aria-label=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Elementor Footer #377', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:37:57', '2026-07-05 11:37:57', '', 377, 'https://mrarif.me/everwell/?p=386', 0, 'revision', '', 0),
(387, 1, '2026-07-05 11:38:12', '2026-07-05 11:38:12', '<h6>About Us</h6>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=2924%20Knight%20Street%20Building%203%2C%20Suite%20357%2C%20Shreveport%2C%20LA%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n					aria-label=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Elementor Footer #377', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:38:12', '2026-07-05 11:38:12', '', 377, 'https://mrarif.me/everwell/?p=387', 0, 'revision', '', 0),
(412, 1, '2026-07-05 11:59:13', '2026-07-05 11:59:13', '<h6>About Us</h6>							\n				<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=2924%20Knight%20Street%20Building%203%2C%20Suite%20357%2C%20Shreveport%2C%20LA%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n					aria-label=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:59:13', '2026-07-05 11:59:13', '', 377, 'https://mrarif.me/everwell/?p=412', 0, 'revision', '', 0),
(388, 1, '2026-07-05 11:38:20', '2026-07-05 11:38:20', '<h6>About Us</h6>							\n				<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=2924%20Knight%20Street%20Building%203%2C%20Suite%20357%2C%20Shreveport%2C%20LA%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n					aria-label=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Elementor Footer #377', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:38:20', '2026-07-05 11:38:20', '', 377, 'https://mrarif.me/everwell/?p=388', 0, 'revision', '', 0),
(389, 1, '2026-07-05 11:48:57', '2026-07-05 11:48:57', '', 'breadcrumb mental', '', 'inherit', 'closed', 'closed', '', 'breadcrumb-mental', '', '', '2026-07-05 11:48:57', '2026-07-05 11:48:57', '', 66, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/breadcrumb-mental.jpg', 0, 'attachment', 'image/jpeg', 0),
(390, 1, '2026-07-05 11:49:39', '2026-07-05 11:49:39', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:49:39', '2026-07-05 11:49:39', '', 66, 'https://mrarif.me/everwell/?p=390', 0, 'revision', '', 0),
(391, 1, '2026-07-05 11:49:58', '2026-07-05 11:49:58', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:49:58', '2026-07-05 11:49:58', '', 66, 'https://mrarif.me/everwell/?p=391', 0, 'revision', '', 0),
(392, 1, '2026-07-05 11:51:19', '2026-07-05 11:51:19', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:51:19', '2026-07-05 11:51:19', '', 14, 'https://mrarif.me/everwell/?p=392', 0, 'revision', '', 0),
(393, 1, '2026-07-05 11:51:19', '2026-07-05 11:51:19', '', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:51:19', '2026-07-05 11:51:19', '', 14, 'https://mrarif.me/everwell/?p=393', 0, 'revision', '', 0),
(394, 1, '2026-07-05 11:51:19', '2026-07-05 11:51:19', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:51:19', '2026-07-05 11:51:19', '', 14, 'https://mrarif.me/everwell/?p=394', 0, 'revision', '', 0),
(395, 1, '2026-07-05 11:51:30', '2026-07-05 11:51:30', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:51:30', '2026-07-05 11:51:30', '', 12, 'https://mrarif.me/everwell/?p=395', 0, 'revision', '', 0),
(396, 1, '2026-07-05 11:51:30', '2026-07-05 11:51:30', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"#\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:51:30', '2026-07-05 11:51:30', '', 12, 'https://mrarif.me/everwell/?p=396', 0, 'revision', '', 0),
(397, 1, '2026-07-05 11:51:30', '2026-07-05 11:51:30', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 11:51:30', '2026-07-05 11:51:30', '', 12, 'https://mrarif.me/everwell/?p=397', 0, 'revision', '', 0),
(398, 1, '2026-07-05 11:52:45', '2026-07-05 11:52:45', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:52:45', '2026-07-05 11:52:45', '', 14, 'https://mrarif.me/everwell/?p=398', 0, 'revision', '', 0),
(399, 1, '2026-07-05 11:52:45', '2026-07-05 11:52:45', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:52:45', '2026-07-05 11:52:45', '', 14, 'https://mrarif.me/everwell/?p=399', 0, 'revision', '', 0),
(908, 1, '2026-07-08 20:29:04', '2026-07-08 20:29:04', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 20:29:04', '2026-07-08 20:29:04', '', 14, 'https://mrarif.me/everwell/?p=908', 0, 'revision', '', 0),
(403, 1, '2026-07-05 11:53:22', '2026-07-05 11:53:22', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:53:22', '2026-07-05 11:53:22', '', 14, 'https://mrarif.me/everwell/?p=403', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(400, 1, '2026-07-05 11:52:46', '2026-07-05 11:52:46', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:52:46', '2026-07-05 11:52:46', '', 14, 'https://mrarif.me/everwell/?p=400', 0, 'revision', '', 0),
(401, 1, '2026-07-05 11:53:21', '2026-07-05 11:53:21', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:53:21', '2026-07-05 11:53:21', '', 14, 'https://mrarif.me/everwell/?p=401', 0, 'revision', '', 0),
(402, 1, '2026-07-05 11:53:22', '2026-07-05 11:53:22', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:53:22', '2026-07-05 11:53:22', '', 14, 'https://mrarif.me/everwell/?p=402', 0, 'revision', '', 0),
(404, 1, '2026-07-05 11:55:51', '2026-07-05 11:55:51', '', 'Compassionate care mental', '', 'inherit', 'closed', 'closed', '', 'compassionate-care-mental', '', '', '2026-07-05 11:55:51', '2026-07-05 11:55:51', '', 14, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg', 0, 'attachment', 'image/jpeg', 0),
(405, 1, '2026-07-05 11:55:56', '2026-07-05 11:55:56', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:55:56', '2026-07-05 11:55:56', '', 14, 'https://mrarif.me/everwell/?p=405', 0, 'revision', '', 0),
(406, 1, '2026-07-05 11:55:56', '2026-07-05 11:55:56', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:55:56', '2026-07-05 11:55:56', '', 14, 'https://mrarif.me/everwell/?p=406', 0, 'revision', '', 0),
(407, 1, '2026-07-05 11:55:56', '2026-07-05 11:55:56', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:55:56', '2026-07-05 11:55:56', '', 14, 'https://mrarif.me/everwell/?p=407', 0, 'revision', '', 0),
(408, 1, '2026-07-05 11:56:11', '2026-07-05 11:56:11', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:56:11', '2026-07-05 11:56:11', '', 14, 'https://mrarif.me/everwell/?p=408', 0, 'revision', '', 0),
(409, 1, '2026-07-05 11:56:11', '2026-07-05 11:56:11', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:56:11', '2026-07-05 11:56:11', '', 14, 'https://mrarif.me/everwell/?p=409', 0, 'revision', '', 0),
(410, 1, '2026-07-05 11:56:11', '2026-07-05 11:56:11', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-05 11:56:11', '2026-07-05 11:56:11', '', 14, 'https://mrarif.me/everwell/?p=410', 0, 'revision', '', 0),
(411, 1, '2026-07-05 11:58:22', '2026-07-05 11:58:22', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:58:22', '2026-07-05 11:58:22', '', 66, 'https://mrarif.me/everwell/?p=411', 0, 'revision', '', 0),
(413, 1, '2026-07-05 11:59:13', '2026-07-05 11:59:13', '<h6>About Us</h6>							\n				<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=2924%20Knight%20Street%20Building%203%2C%20Suite%20357%2C%20Shreveport%2C%20LA%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n					aria-label=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-05 11:59:13', '2026-07-05 11:59:13', '', 377, 'https://mrarif.me/everwell/?p=413', 0, 'revision', '', 0),
(414, 1, '2026-07-05 11:59:21', '2026-07-05 11:59:21', '<ul>\n							<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-05 11:59:21', '2026-07-05 11:59:21', '', 66, 'https://mrarif.me/everwell/?p=414', 0, 'revision', '', 0),
(416, 1, '2026-07-05 12:01:02', '2026-07-05 12:01:02', '', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:01:02', '2026-07-05 12:01:02', '', 18, 'https://mrarif.me/everwell/?p=416', 0, 'revision', '', 0),
(417, 1, '2026-07-05 12:01:02', '2026-07-05 12:01:02', '', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:01:02', '2026-07-05 12:01:02', '', 18, 'https://mrarif.me/everwell/?p=417', 0, 'revision', '', 0),
(418, 1, '2026-07-05 12:01:02', '2026-07-05 12:01:02', '<h2>Women’s Mental Wellness</h2>		Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:01:02', '2026-07-05 12:01:02', '', 18, 'https://mrarif.me/everwell/?p=418', 0, 'revision', '', 0),
(422, 1, '2026-07-05 12:16:38', '2026-07-05 12:16:38', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:38', '2026-07-05 12:16:38', '', 18, 'https://mrarif.me/everwell/?p=422', 0, 'revision', '', 0),
(420, 1, '2026-07-05 12:16:38', '2026-07-05 12:16:38', '<h2>Women’s Mental Wellness</h2>		Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:38', '2026-07-05 12:16:38', '', 18, 'https://mrarif.me/everwell/?p=420', 0, 'revision', '', 0),
(421, 1, '2026-07-05 12:16:38', '2026-07-05 12:16:38', '<h2>Women’s Mental Wellness</h2>		Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:38', '2026-07-05 12:16:38', '', 18, 'https://mrarif.me/everwell/?p=421', 0, 'revision', '', 0),
(423, 1, '2026-07-05 12:16:52', '2026-07-05 12:16:52', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:52', '2026-07-05 12:16:52', '', 18, 'https://mrarif.me/everwell/?p=423', 0, 'revision', '', 0),
(424, 1, '2026-07-05 12:16:52', '2026-07-05 12:16:52', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:52', '2026-07-05 12:16:52', '', 18, 'https://mrarif.me/everwell/?p=424', 0, 'revision', '', 0),
(425, 1, '2026-07-05 12:16:52', '2026-07-05 12:16:52', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:52', '2026-07-05 12:16:52', '', 18, 'https://mrarif.me/everwell/?p=425', 0, 'revision', '', 0),
(426, 1, '2026-07-05 12:16:58', '2026-07-05 12:16:58', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:58', '2026-07-05 12:16:58', '', 18, 'https://mrarif.me/everwell/?p=426', 0, 'revision', '', 0),
(427, 1, '2026-07-05 12:16:58', '2026-07-05 12:16:58', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:58', '2026-07-05 12:16:58', '', 18, 'https://mrarif.me/everwell/?p=427', 0, 'revision', '', 0),
(428, 1, '2026-07-05 12:16:58', '2026-07-05 12:16:58', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:16:58', '2026-07-05 12:16:58', '', 18, 'https://mrarif.me/everwell/?p=428', 0, 'revision', '', 0),
(429, 1, '2026-07-05 12:18:01', '2026-07-05 12:18:01', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:18:01', '2026-07-05 12:18:01', '', 18, 'https://mrarif.me/everwell/?p=429', 0, 'revision', '', 0),
(430, 1, '2026-07-05 12:18:01', '2026-07-05 12:18:01', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:18:01', '2026-07-05 12:18:01', '', 18, 'https://mrarif.me/everwell/?p=430', 0, 'revision', '', 0),
(431, 1, '2026-07-05 12:18:01', '2026-07-05 12:18:01', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:18:01', '2026-07-05 12:18:01', '', 18, 'https://mrarif.me/everwell/?p=431', 0, 'revision', '', 0),
(432, 1, '2026-07-05 12:21:02', '2026-07-05 12:21:02', '', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-05 12:21:02', '2026-07-05 12:21:02', '', 20, 'https://mrarif.me/everwell/?p=432', 0, 'revision', '', 0),
(433, 1, '2026-07-05 12:21:02', '2026-07-05 12:21:02', '', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-05 12:21:02', '2026-07-05 12:21:02', '', 20, 'https://mrarif.me/everwell/?p=433', 0, 'revision', '', 0),
(434, 1, '2026-07-05 12:21:02', '2026-07-05 12:21:02', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-05 12:21:02', '2026-07-05 12:21:02', '', 20, 'https://mrarif.me/everwell/?p=434', 0, 'revision', '', 0),
(438, 1, '2026-07-05 12:34:08', '2026-07-05 12:34:08', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.\n<ul style=\"margin-left: 18px;\">\n 	<li>Medical Weight Management</li>\n 	<li>GLP-1 Therapy (when appropriate)</li>\n 	<li>Metabolic Health Optimization</li>\n 	<li>Personalized Nutrition Guidance</li>\n 	<li>Lifestyle &amp; Habit Coaching</li>\n 	<li>Hormone Evaluation</li>\n 	<li>Ongoing Accountability &amp; Support</li>\n</ul>\nHelping you lose weight, gain confidence, and build lasting health.', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-05 12:34:08', '2026-07-05 12:34:08', '', 22, 'https://mrarif.me/everwell/?p=438', 0, 'revision', '', 0),
(436, 1, '2026-07-05 12:34:08', '2026-07-05 12:34:08', '', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-05 12:34:08', '2026-07-05 12:34:08', '', 22, 'https://mrarif.me/everwell/?p=436', 0, 'revision', '', 0),
(437, 1, '2026-07-05 12:34:08', '2026-07-05 12:34:08', '', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-05 12:34:08', '2026-07-05 12:34:08', '', 22, 'https://mrarif.me/everwell/?p=437', 0, 'revision', '', 0),
(439, 1, '2026-07-05 12:39:51', '2026-07-05 12:39:51', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.\n<ul style=\"margin-left: 18px;\">\n 	<li>Medical Weight Management</li>\n 	<li>GLP-1 Therapy (when appropriate)</li>\n 	<li>Metabolic Health Optimization</li>\n 	<li>Personalized Nutrition Guidance</li>\n 	<li>Lifestyle &amp; Habit Coaching</li>\n 	<li>Hormone Evaluation</li>\n 	<li>Ongoing Accountability &amp; Support</li>\n</ul>\nHelping you lose weight, gain confidence, and build lasting health.', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-05 12:39:51', '2026-07-05 12:39:51', '', 22, 'https://mrarif.me/everwell/?p=439', 0, 'revision', '', 0),
(440, 1, '2026-07-05 12:39:51', '2026-07-05 12:39:51', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		Achieve sustainable results through personalized, science-based care.\nOur comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.\n<ul style=\"margin-left: 18px;\">\n 	<li>Medical Weight Management</li>\n 	<li>GLP-1 Therapy (when appropriate)</li>\n 	<li>Metabolic Health Optimization</li>\n 	<li>Personalized Nutrition Guidance</li>\n 	<li>Lifestyle &amp; Habit Coaching</li>\n 	<li>Hormone Evaluation</li>\n 	<li>Ongoing Accountability &amp; Support</li>\n</ul>\nHelping you lose weight, gain confidence, and build lasting health.', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-05 12:39:51', '2026-07-05 12:39:51', '', 22, 'https://mrarif.me/everwell/?p=440', 0, 'revision', '', 0),
(441, 1, '2026-07-05 12:39:51', '2026-07-05 12:39:51', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-05 12:39:51', '2026-07-05 12:39:51', '', 22, 'https://mrarif.me/everwell/?p=441', 0, 'revision', '', 0),
(443, 1, '2026-07-05 12:41:37', '2026-07-05 12:41:37', '', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-05 12:41:37', '2026-07-05 12:41:37', '', 24, 'https://mrarif.me/everwell/?p=443', 0, 'revision', '', 0),
(444, 1, '2026-07-05 12:41:37', '2026-07-05 12:41:37', '', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-05 12:41:37', '2026-07-05 12:41:37', '', 24, 'https://mrarif.me/everwell/?p=444', 0, 'revision', '', 0),
(445, 1, '2026-07-05 12:41:37', '2026-07-05 12:41:37', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns &amp; Sprains</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-05 12:41:37', '2026-07-05 12:41:37', '', 24, 'https://mrarif.me/everwell/?p=445', 0, 'revision', '', 0),
(446, 1, '2026-07-05 12:43:30', '2026-07-05 12:43:30', '', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-05 12:43:30', '2026-07-05 12:43:30', '', 26, 'https://mrarif.me/everwell/?p=446', 0, 'revision', '', 0),
(447, 1, '2026-07-05 12:43:30', '2026-07-05 12:43:30', '', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-05 12:43:30', '2026-07-05 12:43:30', '', 26, 'https://mrarif.me/everwell/?p=447', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(448, 1, '2026-07-05 12:43:30', '2026-07-05 12:43:30', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-05 12:43:30', '2026-07-05 12:43:30', '', 26, 'https://mrarif.me/everwell/?p=448', 0, 'revision', '', 0),
(449, 1, '2026-07-05 12:44:53', '2026-07-05 12:44:53', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:44:53', '2026-07-05 12:44:53', '', 18, 'https://mrarif.me/everwell/?p=449', 0, 'revision', '', 0),
(450, 1, '2026-07-05 12:44:53', '2026-07-05 12:44:53', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:44:53', '2026-07-05 12:44:53', '', 18, 'https://mrarif.me/everwell/?p=450', 0, 'revision', '', 0),
(454, 1, '2026-07-05 12:45:38', '2026-07-05 12:45:38', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:45:38', '2026-07-05 12:45:38', '', 18, 'https://mrarif.me/everwell/?p=454', 0, 'revision', '', 0),
(451, 1, '2026-07-05 12:44:54', '2026-07-05 12:44:54', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:44:54', '2026-07-05 12:44:54', '', 18, 'https://mrarif.me/everwell/?p=451', 0, 'revision', '', 0),
(452, 1, '2026-07-05 12:45:38', '2026-07-05 12:45:38', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:45:38', '2026-07-05 12:45:38', '', 18, 'https://mrarif.me/everwell/?p=452', 0, 'revision', '', 0),
(453, 1, '2026-07-05 12:45:38', '2026-07-05 12:45:38', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:45:38', '2026-07-05 12:45:38', '', 18, 'https://mrarif.me/everwell/?p=453', 0, 'revision', '', 0),
(455, 1, '2026-07-05 12:49:42', '2026-07-05 12:49:42', '', 'Genetic Testing a', '', 'inherit', 'closed', 'closed', '', 'genetic-testing-a', '', '', '2026-07-05 12:49:42', '2026-07-05 12:49:42', '', 18, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(456, 1, '2026-07-05 12:49:46', '2026-07-05 12:49:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:49:46', '2026-07-05 12:49:46', '', 18, 'https://mrarif.me/everwell/?p=456', 0, 'revision', '', 0),
(457, 1, '2026-07-05 12:49:46', '2026-07-05 12:49:46', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:49:46', '2026-07-05 12:49:46', '', 18, 'https://mrarif.me/everwell/?p=457', 0, 'revision', '', 0),
(458, 1, '2026-07-05 12:49:47', '2026-07-05 12:49:47', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-05 12:49:47', '2026-07-05 12:49:47', '', 18, 'https://mrarif.me/everwell/?p=458', 0, 'revision', '', 0),
(462, 1, '2026-07-05 13:17:47', '2026-07-05 13:17:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:17:47', '2026-07-05 13:17:47', '', 12, 'https://mrarif.me/everwell/?p=462', 0, 'revision', '', 0),
(463, 1, '2026-07-05 13:17:47', '2026-07-05 13:17:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:17:47', '2026-07-05 13:17:47', '', 12, 'https://mrarif.me/everwell/?p=463', 0, 'revision', '', 0),
(464, 1, '2026-07-05 13:17:47', '2026-07-05 13:17:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:17:47', '2026-07-05 13:17:47', '', 12, 'https://mrarif.me/everwell/?p=464', 0, 'revision', '', 0),
(465, 1, '2026-07-05 13:19:22', '2026-07-05 13:19:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:19:22', '2026-07-05 13:19:22', '', 12, 'https://mrarif.me/everwell/?p=465', 0, 'revision', '', 0),
(466, 1, '2026-07-05 13:19:22', '2026-07-05 13:19:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"#\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:19:22', '2026-07-05 13:19:22', '', 12, 'https://mrarif.me/everwell/?p=466', 0, 'revision', '', 0),
(467, 1, '2026-07-05 13:19:23', '2026-07-05 13:19:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:19:23', '2026-07-05 13:19:23', '', 12, 'https://mrarif.me/everwell/?p=467', 0, 'revision', '', 0),
(468, 1, '2026-07-05 13:20:10', '2026-07-05 13:20:10', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:20:10', '2026-07-05 13:20:10', '', 12, 'https://mrarif.me/everwell/?p=468', 0, 'revision', '', 0),
(469, 1, '2026-07-05 13:20:10', '2026-07-05 13:20:10', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:20:10', '2026-07-05 13:20:10', '', 12, 'https://mrarif.me/everwell/?p=469', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(470, 1, '2026-07-05 13:20:11', '2026-07-05 13:20:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:20:11', '2026-07-05 13:20:11', '', 12, 'https://mrarif.me/everwell/?p=470', 0, 'revision', '', 0),
(471, 1, '2026-07-05 13:21:21', '2026-07-05 13:21:21', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-05 13:21:21', '2026-07-05 13:21:21', '', 36, 'https://mrarif.me/everwell/?p=471', 0, 'revision', '', 0),
(472, 1, '2026-07-05 13:21:21', '2026-07-05 13:21:21', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-05 13:21:21', '2026-07-05 13:21:21', '', 36, 'https://mrarif.me/everwell/?p=472', 0, 'revision', '', 0),
(474, 1, '2026-07-05 13:21:34', '2026-07-05 13:21:34', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-05 13:21:34', '2026-07-05 13:21:34', '', 36, 'https://mrarif.me/everwell/?p=474', 0, 'revision', '', 0),
(475, 1, '2026-07-05 13:21:34', '2026-07-05 13:21:34', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-05 13:21:34', '2026-07-05 13:21:34', '', 36, 'https://mrarif.me/everwell/?p=475', 0, 'revision', '', 0),
(476, 1, '2026-07-05 13:21:34', '2026-07-05 13:21:34', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-05 13:21:34', '2026-07-05 13:21:34', '', 36, 'https://mrarif.me/everwell/?p=476', 0, 'revision', '', 0),
(477, 1, '2026-07-05 13:24:41', '2026-07-05 13:24:41', '', 'Vector-BG-4', '', 'inherit', 'closed', 'closed', '', 'vector-bg-4', '', '', '2026-07-05 13:24:41', '2026-07-05 13:24:41', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Vector-BG-4.png', 0, 'attachment', 'image/png', 0),
(481, 1, '2026-07-05 13:27:45', '2026-07-05 13:27:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:27:45', '2026-07-05 13:27:45', '', 12, 'https://mrarif.me/everwell/?p=481', 0, 'revision', '', 0),
(479, 1, '2026-07-05 13:27:44', '2026-07-05 13:27:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:27:44', '2026-07-05 13:27:44', '', 12, 'https://mrarif.me/everwell/?p=479', 0, 'revision', '', 0),
(480, 1, '2026-07-05 13:27:44', '2026-07-05 13:27:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:27:44', '2026-07-05 13:27:44', '', 12, 'https://mrarif.me/everwell/?p=480', 0, 'revision', '', 0),
(482, 1, '2026-07-05 13:28:04', '2026-07-05 13:28:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:28:04', '2026-07-05 13:28:04', '', 12, 'https://mrarif.me/everwell/?p=482', 0, 'revision', '', 0),
(483, 1, '2026-07-05 13:28:04', '2026-07-05 13:28:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:28:04', '2026-07-05 13:28:04', '', 12, 'https://mrarif.me/everwell/?p=483', 0, 'revision', '', 0),
(484, 1, '2026-07-05 13:28:04', '2026-07-05 13:28:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:28:04', '2026-07-05 13:28:04', '', 12, 'https://mrarif.me/everwell/?p=484', 0, 'revision', '', 0),
(485, 1, '2026-07-05 13:28:11', '2026-07-05 13:28:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:28:11', '2026-07-05 13:28:11', '', 12, 'https://mrarif.me/everwell/?p=485', 0, 'revision', '', 0),
(486, 1, '2026-07-05 13:28:11', '2026-07-05 13:28:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:28:11', '2026-07-05 13:28:11', '', 12, 'https://mrarif.me/everwell/?p=486', 0, 'revision', '', 0),
(487, 1, '2026-07-05 13:28:11', '2026-07-05 13:28:11', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:28:11', '2026-07-05 13:28:11', '', 12, 'https://mrarif.me/everwell/?p=487', 0, 'revision', '', 0),
(811, 1, '2026-07-08 09:55:25', '2026-07-08 09:55:25', '', 'Live-Well.-Age-Well-left', '', 'inherit', 'closed', 'closed', '', 'live-well-age-well-left', '', '', '2026-07-08 09:55:25', '2026-07-08 09:55:25', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(489, 1, '2026-07-05 13:39:54', '2026-07-05 13:39:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:39:54', '2026-07-05 13:39:54', '', 12, 'https://mrarif.me/everwell/?p=489', 0, 'revision', '', 0),
(490, 1, '2026-07-05 13:39:54', '2026-07-05 13:39:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/banner-wellness-a.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:39:54', '2026-07-05 13:39:54', '', 12, 'https://mrarif.me/everwell/?p=490', 0, 'revision', '', 0),
(524, 1, '2026-07-06 06:35:07', '2026-07-06 06:35:07', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 06:35:07', '2026-07-06 06:35:07', '', 12, 'https://mrarif.me/everwell/?p=524', 0, 'revision', '', 0),
(491, 1, '2026-07-05 13:39:54', '2026-07-05 13:39:54', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:39:54', '2026-07-05 13:39:54', '', 12, 'https://mrarif.me/everwell/?p=491', 0, 'revision', '', 0),
(492, 1, '2026-07-05 13:44:39', '2026-07-05 13:44:39', '', 'img1', '', 'inherit', 'closed', 'closed', '', 'img1', '', '', '2026-07-05 13:44:39', '2026-07-05 13:44:39', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/img1.jpg', 0, 'attachment', 'image/jpeg', 0),
(493, 1, '2026-07-05 13:45:44', '2026-07-05 13:45:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:45:44', '2026-07-05 13:45:44', '', 12, 'https://mrarif.me/everwell/?p=493', 0, 'revision', '', 0),
(494, 1, '2026-07-05 13:45:44', '2026-07-05 13:45:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:45:44', '2026-07-05 13:45:44', '', 12, 'https://mrarif.me/everwell/?p=494', 0, 'revision', '', 0),
(495, 1, '2026-07-05 13:45:44', '2026-07-05 13:45:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:45:44', '2026-07-05 13:45:44', '', 12, 'https://mrarif.me/everwell/?p=495', 0, 'revision', '', 0),
(496, 1, '2026-07-05 13:46:37', '2026-07-05 13:46:37', '', 'slider2-shape', '', 'inherit', 'closed', 'closed', '', 'slider2-shape', '', '', '2026-07-05 13:46:37', '2026-07-05 13:46:37', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/slider2-shape.webp', 0, 'attachment', 'image/webp', 0),
(500, 1, '2026-07-05 13:48:12', '2026-07-05 13:48:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:48:12', '2026-07-05 13:48:12', '', 12, 'https://mrarif.me/everwell/?p=500', 0, 'revision', '', 0),
(498, 1, '2026-07-05 13:48:12', '2026-07-05 13:48:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:48:12', '2026-07-05 13:48:12', '', 12, 'https://mrarif.me/everwell/?p=498', 0, 'revision', '', 0),
(499, 1, '2026-07-05 13:48:12', '2026-07-05 13:48:12', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:48:12', '2026-07-05 13:48:12', '', 12, 'https://mrarif.me/everwell/?p=499', 0, 'revision', '', 0),
(501, 1, '2026-07-05 13:51:06', '2026-07-05 13:51:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:51:06', '2026-07-05 13:51:06', '', 12, 'https://mrarif.me/everwell/?p=501', 0, 'revision', '', 0),
(502, 1, '2026-07-05 13:51:06', '2026-07-05 13:51:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:51:06', '2026-07-05 13:51:06', '', 12, 'https://mrarif.me/everwell/?p=502', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(503, 1, '2026-07-05 13:51:06', '2026-07-05 13:51:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:51:06', '2026-07-05 13:51:06', '', 12, 'https://mrarif.me/everwell/?p=503', 0, 'revision', '', 0),
(504, 1, '2026-07-05 13:58:43', '2026-07-05 13:58:43', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:58:43', '2026-07-05 13:58:43', '', 12, 'https://mrarif.me/everwell/?p=504', 0, 'revision', '', 0),
(505, 1, '2026-07-05 13:58:43', '2026-07-05 13:58:43', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:58:43', '2026-07-05 13:58:43', '', 12, 'https://mrarif.me/everwell/?p=505', 0, 'revision', '', 0),
(506, 1, '2026-07-05 13:58:44', '2026-07-05 13:58:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-05 13:58:44', '2026-07-05 13:58:44', '', 12, 'https://mrarif.me/everwell/?p=506', 0, 'revision', '', 0),
(507, 1, '2026-07-06 05:38:13', '2026-07-06 05:38:13', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:38:13', '2026-07-06 05:38:13', '', 12, 'https://mrarif.me/everwell/?p=507', 0, 'revision', '', 0),
(508, 1, '2026-07-06 05:38:13', '2026-07-06 05:38:13', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:38:13', '2026-07-06 05:38:13', '', 12, 'https://mrarif.me/everwell/?p=508', 0, 'revision', '', 0),
(509, 1, '2026-07-06 05:38:14', '2026-07-06 05:38:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:38:14', '2026-07-06 05:38:14', '', 12, 'https://mrarif.me/everwell/?p=509', 0, 'revision', '', 0),
(510, 1, '2026-07-06 05:39:17', '2026-07-06 05:39:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:39:17', '2026-07-06 05:39:17', '', 12, 'https://mrarif.me/everwell/?p=510', 0, 'revision', '', 0),
(511, 1, '2026-07-06 05:39:17', '2026-07-06 05:39:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:39:17', '2026-07-06 05:39:17', '', 12, 'https://mrarif.me/everwell/?p=511', 0, 'revision', '', 0),
(512, 1, '2026-07-06 05:39:17', '2026-07-06 05:39:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:39:17', '2026-07-06 05:39:17', '', 12, 'https://mrarif.me/everwell/?p=512', 0, 'revision', '', 0),
(513, 1, '2026-07-06 05:42:21', '2026-07-06 05:42:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:42:21', '2026-07-06 05:42:21', '', 12, 'https://mrarif.me/everwell/?p=513', 0, 'revision', '', 0),
(514, 1, '2026-07-06 05:42:21', '2026-07-06 05:42:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:42:21', '2026-07-06 05:42:21', '', 12, 'https://mrarif.me/everwell/?p=514', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(515, 1, '2026-07-06 05:42:21', '2026-07-06 05:42:21', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 05:42:21', '2026-07-06 05:42:21', '', 12, 'https://mrarif.me/everwell/?p=515', 0, 'revision', '', 0),
(516, 1, '2026-07-06 05:44:05', '2026-07-06 05:44:05', '<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 05:44:05', '2026-07-06 05:44:05', '', 16, 'https://mrarif.me/everwell/?p=516', 0, 'revision', '', 0),
(517, 1, '2026-07-06 05:44:05', '2026-07-06 05:44:05', '<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 05:44:05', '2026-07-06 05:44:05', '', 16, 'https://mrarif.me/everwell/?p=517', 0, 'revision', '', 0),
(518, 1, '2026-07-06 05:44:05', '2026-07-06 05:44:05', '<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 05:44:05', '2026-07-06 05:44:05', '', 16, 'https://mrarif.me/everwell/?p=518', 0, 'revision', '', 0),
(519, 1, '2026-07-06 05:55:32', '2026-07-06 05:55:32', '<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 05:55:32', '2026-07-06 05:55:32', '', 16, 'https://mrarif.me/everwell/?p=519', 0, 'revision', '', 0),
(520, 1, '2026-07-06 05:55:32', '2026-07-06 05:55:32', '<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 05:55:32', '2026-07-06 05:55:32', '', 16, 'https://mrarif.me/everwell/?p=520', 0, 'revision', '', 0),
(521, 1, '2026-07-06 05:55:32', '2026-07-06 05:55:32', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 05:55:32', '2026-07-06 05:55:32', '', 16, 'https://mrarif.me/everwell/?p=521', 0, 'revision', '', 0),
(522, 1, '2026-07-06 06:35:07', '2026-07-06 06:35:07', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 06:35:07', '2026-07-06 06:35:07', '', 12, 'https://mrarif.me/everwell/?p=522', 0, 'revision', '', 0),
(523, 1, '2026-07-06 06:35:07', '2026-07-06 06:35:07', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 06:35:07', '2026-07-06 06:35:07', '', 12, 'https://mrarif.me/everwell/?p=523', 0, 'revision', '', 0),
(525, 1, '2026-07-06 06:35:18', '2026-07-06 06:35:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 06:35:18', '2026-07-06 06:35:18', '', 12, 'https://mrarif.me/everwell/?p=525', 0, 'revision', '', 0),
(526, 1, '2026-07-06 06:35:18', '2026-07-06 06:35:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 06:35:18', '2026-07-06 06:35:18', '', 12, 'https://mrarif.me/everwell/?p=526', 0, 'revision', '', 0),
(527, 1, '2026-07-06 06:35:18', '2026-07-06 06:35:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 06:35:18', '2026-07-06 06:35:18', '', 12, 'https://mrarif.me/everwell/?p=527', 0, 'revision', '', 0),
(528, 1, '2026-07-06 07:41:51', '2026-07-06 07:41:51', '{\n    \"astra-settings[theme-button-border-group-border-size]\": {\n        \"value\": {\n            \"top\": \"-2\",\n            \"right\": \"-2\",\n            \"bottom\": \"-2\",\n            \"left\": \"-2\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-06 07:41:51\"\n    },\n    \"astra-settings[button-radius-fields]\": {\n        \"value\": {\n            \"desktop\": {\n                \"top\": \"30\",\n                \"right\": \"30\",\n                \"bottom\": \"30\",\n                \"left\": \"30\"\n            },\n            \"tablet\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"mobile\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-07-06 07:41:51\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '46066223-cfbe-4ac9-9ce7-50ff64b96e85', '', '', '2026-07-06 07:41:51', '2026-07-06 07:41:51', '', 0, 'https://mrarif.me/everwell/46066223-cfbe-4ac9-9ce7-50ff64b96e85/', 0, 'customize_changeset', '', 0),
(532, 1, '2026-07-06 07:46:24', '2026-07-06 07:46:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:46:24', '2026-07-06 07:46:24', '', 12, 'https://mrarif.me/everwell/?p=532', 0, 'revision', '', 0),
(530, 1, '2026-07-06 07:46:24', '2026-07-06 07:46:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:46:24', '2026-07-06 07:46:24', '', 12, 'https://mrarif.me/everwell/?p=530', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(531, 1, '2026-07-06 07:46:24', '2026-07-06 07:46:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:46:24', '2026-07-06 07:46:24', '', 12, 'https://mrarif.me/everwell/?p=531', 0, 'revision', '', 0),
(533, 1, '2026-07-06 07:47:17', '2026-07-06 07:47:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home old (6-7-26)', '', 'publish', 'closed', 'closed', '', 'home-old-6-7-26', '', '', '2026-07-06 07:47:17', '2026-07-06 07:47:17', '', 0, 'https://mrarif.me/everwell/?elementor_library=home-old-6-7-26', 0, 'elementor_library', '', 0),
(534, 1, '2026-07-06 07:47:17', '2026-07-06 07:47:17', '', 'Home old (6-7-26)', '', 'inherit', 'closed', 'closed', '', '533-revision-v1', '', '', '2026-07-06 07:47:17', '2026-07-06 07:47:17', '', 533, 'https://mrarif.me/everwell/?p=534', 0, 'revision', '', 0),
(535, 1, '2026-07-06 07:47:17', '2026-07-06 07:47:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home old (6-7-26)', '', 'inherit', 'closed', 'closed', '', '533-revision-v1', '', '', '2026-07-06 07:47:17', '2026-07-06 07:47:17', '', 533, 'https://mrarif.me/everwell/?p=535', 0, 'revision', '', 0),
(536, 1, '2026-07-06 07:49:00', '2026-07-06 07:49:00', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:49:00', '2026-07-06 07:49:00', '', 12, 'https://mrarif.me/everwell/?p=536', 0, 'revision', '', 0),
(537, 1, '2026-07-06 07:49:00', '2026-07-06 07:49:00', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Everwell Longevity &amp; Wellness</h1>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:49:00', '2026-07-06 07:49:00', '', 12, 'https://mrarif.me/everwell/?p=537', 0, 'revision', '', 0),
(538, 1, '2026-07-06 07:49:00', '2026-07-06 07:49:00', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>					<h5>Wellness • Mind • Metabolism • Longevity</h5>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:49:00', '2026-07-06 07:49:00', '', 12, 'https://mrarif.me/everwell/?p=538', 0, 'revision', '', 0),
(539, 1, '2026-07-06 07:53:14', '2026-07-06 07:53:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>					<h5>Wellness • Mind • Metabolism • Longevity</h5>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:53:14', '2026-07-06 07:53:14', '', 12, 'https://mrarif.me/everwell/?p=539', 0, 'revision', '', 0),
(540, 1, '2026-07-06 07:53:14', '2026-07-06 07:53:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>					<h5>Wellness • Mind • Metabolism • Longevity</h5>		Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:53:14', '2026-07-06 07:53:14', '', 12, 'https://mrarif.me/everwell/?p=540', 0, 'revision', '', 0),
(541, 1, '2026-07-06 07:53:14', '2026-07-06 07:53:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:53:14', '2026-07-06 07:53:14', '', 12, 'https://mrarif.me/everwell/?p=541', 0, 'revision', '', 0),
(542, 1, '2026-07-06 07:54:05', '2026-07-06 07:54:05', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:54:05', '2026-07-06 07:54:05', '', 12, 'https://mrarif.me/everwell/?p=542', 0, 'revision', '', 0),
(543, 1, '2026-07-06 07:54:05', '2026-07-06 07:54:05', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:54:05', '2026-07-06 07:54:05', '', 12, 'https://mrarif.me/everwell/?p=543', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(544, 1, '2026-07-06 07:54:05', '2026-07-06 07:54:05', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:54:05', '2026-07-06 07:54:05', '', 12, 'https://mrarif.me/everwell/?p=544', 0, 'revision', '', 0),
(545, 1, '2026-07-06 07:54:44', '2026-07-06 07:54:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:54:44', '2026-07-06 07:54:44', '', 12, 'https://mrarif.me/everwell/?p=545', 0, 'revision', '', 0),
(546, 1, '2026-07-06 07:54:44', '2026-07-06 07:54:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:54:44', '2026-07-06 07:54:44', '', 12, 'https://mrarif.me/everwell/?p=546', 0, 'revision', '', 0),
(547, 1, '2026-07-06 07:54:44', '2026-07-06 07:54:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:54:44', '2026-07-06 07:54:44', '', 12, 'https://mrarif.me/everwell/?p=547', 0, 'revision', '', 0),
(548, 1, '2026-07-06 07:55:35', '2026-07-06 07:55:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:55:35', '2026-07-06 07:55:35', '', 12, 'https://mrarif.me/everwell/?p=548', 0, 'revision', '', 0),
(549, 1, '2026-07-06 07:55:35', '2026-07-06 07:55:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:55:35', '2026-07-06 07:55:35', '', 12, 'https://mrarif.me/everwell/?p=549', 0, 'revision', '', 0),
(550, 1, '2026-07-06 07:55:35', '2026-07-06 07:55:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 07:55:35', '2026-07-06 07:55:35', '', 12, 'https://mrarif.me/everwell/?p=550', 0, 'revision', '', 0),
(551, 1, '2026-07-06 08:07:56', '2026-07-06 08:07:56', '', 'Mental Wellness aa', '', 'inherit', 'closed', 'closed', '', 'mental-wellness-aa', '', '', '2026-07-06 08:07:56', '2026-07-06 08:07:56', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(552, 1, '2026-07-06 08:08:17', '2026-07-06 08:08:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:08:17', '2026-07-06 08:08:17', '', 12, 'https://mrarif.me/everwell/?p=552', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(553, 1, '2026-07-06 08:08:17', '2026-07-06 08:08:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:08:17', '2026-07-06 08:08:17', '', 12, 'https://mrarif.me/everwell/?p=553', 0, 'revision', '', 0),
(554, 1, '2026-07-06 08:08:17', '2026-07-06 08:08:17', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:08:17', '2026-07-06 08:08:17', '', 12, 'https://mrarif.me/everwell/?p=554', 0, 'revision', '', 0),
(555, 1, '2026-07-06 08:11:06', '2026-07-06 08:11:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:11:06', '2026-07-06 08:11:06', '', 12, 'https://mrarif.me/everwell/?p=555', 0, 'revision', '', 0),
(556, 1, '2026-07-06 08:11:06', '2026-07-06 08:11:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:11:06', '2026-07-06 08:11:06', '', 12, 'https://mrarif.me/everwell/?p=556', 0, 'revision', '', 0),
(557, 1, '2026-07-06 08:11:06', '2026-07-06 08:11:06', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:11:06', '2026-07-06 08:11:06', '', 12, 'https://mrarif.me/everwell/?p=557', 0, 'revision', '', 0),
(558, 1, '2026-07-06 08:48:13', '2026-07-06 08:48:13', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 08:48:13', '2026-07-06 08:48:13', '', 16, 'https://mrarif.me/everwell/?p=558', 0, 'revision', '', 0),
(559, 1, '2026-07-06 08:48:13', '2026-07-06 08:48:13', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 08:48:13', '2026-07-06 08:48:13', '', 16, 'https://mrarif.me/everwell/?p=559', 0, 'revision', '', 0),
(560, 1, '2026-07-06 08:48:13', '2026-07-06 08:48:13', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 08:48:13', '2026-07-06 08:48:13', '', 16, 'https://mrarif.me/everwell/?p=560', 0, 'revision', '', 0),
(561, 1, '2026-07-06 08:54:31', '2026-07-06 08:54:31', '', 'Aesthetics sab', '', 'inherit', 'closed', 'closed', '', 'aesthetics-sab', '', '', '2026-07-06 08:54:31', '2026-07-06 08:54:31', '', 16, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg', 0, 'attachment', 'image/jpeg', 0),
(562, 1, '2026-07-06 08:54:36', '2026-07-06 08:54:36', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 08:54:36', '2026-07-06 08:54:36', '', 16, 'https://mrarif.me/everwell/?p=562', 0, 'revision', '', 0),
(563, 1, '2026-07-06 08:54:36', '2026-07-06 08:54:36', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 08:54:36', '2026-07-06 08:54:36', '', 16, 'https://mrarif.me/everwell/?p=563', 0, 'revision', '', 0),
(564, 1, '2026-07-06 08:54:36', '2026-07-06 08:54:36', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 08:54:36', '2026-07-06 08:54:36', '', 16, 'https://mrarif.me/everwell/?p=564', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(565, 1, '2026-07-06 08:58:16', '2026-07-06 08:58:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:58:16', '2026-07-06 08:58:16', '', 12, 'https://mrarif.me/everwell/?p=565', 0, 'revision', '', 0),
(566, 1, '2026-07-06 08:58:16', '2026-07-06 08:58:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:58:16', '2026-07-06 08:58:16', '', 12, 'https://mrarif.me/everwell/?p=566', 0, 'revision', '', 0),
(567, 1, '2026-07-06 08:58:16', '2026-07-06 08:58:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 08:58:16', '2026-07-06 08:58:16', '', 12, 'https://mrarif.me/everwell/?p=567', 0, 'revision', '', 0),
(568, 1, '2026-07-06 08:59:57', '2026-07-06 08:59:57', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 08:59:57', '2026-07-06 08:59:57', '', 18, 'https://mrarif.me/everwell/?p=568', 0, 'revision', '', 0),
(569, 1, '2026-07-06 08:59:57', '2026-07-06 08:59:57', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 08:59:57', '2026-07-06 08:59:57', '', 18, 'https://mrarif.me/everwell/?p=569', 0, 'revision', '', 0),
(570, 1, '2026-07-06 08:59:57', '2026-07-06 08:59:57', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 08:59:57', '2026-07-06 08:59:57', '', 18, 'https://mrarif.me/everwell/?p=570', 0, 'revision', '', 0),
(571, 1, '2026-07-06 09:00:07', '2026-07-06 09:00:07', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-06 09:00:07', '2026-07-06 09:00:07', '', 20, 'https://mrarif.me/everwell/?p=571', 0, 'revision', '', 0),
(572, 1, '2026-07-06 09:00:08', '2026-07-06 09:00:08', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-06 09:00:08', '2026-07-06 09:00:08', '', 20, 'https://mrarif.me/everwell/?p=572', 0, 'revision', '', 0),
(573, 1, '2026-07-06 09:00:08', '2026-07-06 09:00:08', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-06 09:00:08', '2026-07-06 09:00:08', '', 20, 'https://mrarif.me/everwell/?p=573', 0, 'revision', '', 0),
(577, 1, '2026-07-06 09:04:41', '2026-07-06 09:04:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:04:41', '2026-07-06 09:04:41', '', 12, 'https://mrarif.me/everwell/?p=577', 0, 'revision', '', 0),
(575, 1, '2026-07-06 09:04:41', '2026-07-06 09:04:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:04:41', '2026-07-06 09:04:41', '', 12, 'https://mrarif.me/everwell/?p=575', 0, 'revision', '', 0),
(576, 1, '2026-07-06 09:04:41', '2026-07-06 09:04:41', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:04:41', '2026-07-06 09:04:41', '', 12, 'https://mrarif.me/everwell/?p=576', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(578, 1, '2026-07-06 09:05:18', '2026-07-06 09:05:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:05:18', '2026-07-06 09:05:18', '', 12, 'https://mrarif.me/everwell/?p=578', 0, 'revision', '', 0),
(579, 1, '2026-07-06 09:05:18', '2026-07-06 09:05:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:05:18', '2026-07-06 09:05:18', '', 12, 'https://mrarif.me/everwell/?p=579', 0, 'revision', '', 0),
(580, 1, '2026-07-06 09:05:18', '2026-07-06 09:05:18', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL Longevity &amp; Wellness providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:05:18', '2026-07-06 09:05:18', '', 12, 'https://mrarif.me/everwell/?p=580', 0, 'revision', '', 0),
(680, 1, '2026-07-06 11:25:30', '2026-07-06 11:25:30', '<h6>About Us</h6>							\n				EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=300%20Murrell%20Street%20Homer%2C%20LA%2071040&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"300 Murrell Street Homer, LA 71040\"\n					aria-label=\"300 Murrell Street Homer, LA 71040\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-06 11:25:30', '2026-07-06 11:25:30', '', 377, 'https://mrarif.me/everwell/?p=680', 0, 'revision', '', 0),
(581, 1, '2026-07-06 09:06:25', '2026-07-06 09:06:25', '<h6>About Us</h6>							\n				EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=2924%20Knight%20Street%20Building%203%2C%20Suite%20357%2C%20Shreveport%2C%20LA%2C%20USA&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n					aria-label=\"2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-06 09:06:25', '2026-07-06 09:06:25', '', 377, 'https://mrarif.me/everwell/?p=581', 0, 'revision', '', 0),
(582, 1, '2026-07-06 09:06:59', '2026-07-06 09:06:59', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL Longevity &amp; Wellness providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:06:59', '2026-07-06 09:06:59', '', 12, 'https://mrarif.me/everwell/?p=582', 0, 'revision', '', 0),
(583, 1, '2026-07-06 09:06:59', '2026-07-06 09:06:59', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL Longevity &amp; Wellness providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:06:59', '2026-07-06 09:06:59', '', 12, 'https://mrarif.me/everwell/?p=583', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(584, 1, '2026-07-06 09:06:59', '2026-07-06 09:06:59', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 09:06:59', '2026-07-06 09:06:59', '', 12, 'https://mrarif.me/everwell/?p=584', 0, 'revision', '', 0),
(585, 1, '2026-07-06 09:08:59', '2026-07-06 09:08:59', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 09:08:59', '2026-07-06 09:08:59', '', 14, 'https://mrarif.me/everwell/?p=585', 0, 'revision', '', 0),
(586, 1, '2026-07-06 09:08:59', '2026-07-06 09:08:59', '<h2>About Us</h2>		<p>EVERWELL LW providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 09:08:59', '2026-07-06 09:08:59', '', 14, 'https://mrarif.me/everwell/?p=586', 0, 'revision', '', 0),
(722, 1, '2026-07-06 12:03:45', '2026-07-06 12:03:45', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 12:03:45', '2026-07-06 12:03:45', '', 14, 'https://mrarif.me/everwell/?p=722', 0, 'revision', '', 0),
(587, 1, '2026-07-06 09:08:59', '2026-07-06 09:08:59', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 09:08:59', '2026-07-06 09:08:59', '', 14, 'https://mrarif.me/everwell/?p=587', 0, 'revision', '', 0),
(591, 1, '2026-07-06 09:14:37', '2026-07-06 09:14:37', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-06 09:14:37', '2026-07-06 09:14:37', '', 24, 'https://mrarif.me/everwell/?p=591', 0, 'revision', '', 0),
(589, 1, '2026-07-06 09:14:36', '2026-07-06 09:14:36', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns &amp; Sprains</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-06 09:14:36', '2026-07-06 09:14:36', '', 24, 'https://mrarif.me/everwell/?p=589', 0, 'revision', '', 0),
(590, 1, '2026-07-06 09:14:36', '2026-07-06 09:14:36', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns &amp; Sprains</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-06 09:14:36', '2026-07-06 09:14:36', '', 24, 'https://mrarif.me/everwell/?p=590', 0, 'revision', '', 0),
(592, 1, '2026-07-06 09:31:06', '2026-07-06 09:31:06', '', 'Urgent Care health care a', '', 'inherit', 'closed', 'closed', '', 'urgent-care-health-care-a', '', '', '2026-07-06 09:31:06', '2026-07-06 09:31:06', '', 24, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(593, 1, '2026-07-06 09:31:11', '2026-07-06 09:31:11', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-06 09:31:11', '2026-07-06 09:31:11', '', 24, 'https://mrarif.me/everwell/?p=593', 0, 'revision', '', 0),
(594, 1, '2026-07-06 09:31:11', '2026-07-06 09:31:11', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-06 09:31:11', '2026-07-06 09:31:11', '', 24, 'https://mrarif.me/everwell/?p=594', 0, 'revision', '', 0),
(595, 1, '2026-07-06 09:31:11', '2026-07-06 09:31:11', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-06 09:31:11', '2026-07-06 09:31:11', '', 24, 'https://mrarif.me/everwell/?p=595', 0, 'revision', '', 0),
(596, 1, '2026-07-06 09:31:51', '2026-07-06 09:31:51', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 09:31:51', '2026-07-06 09:31:51', '', 16, 'https://mrarif.me/everwell/?p=596', 0, 'revision', '', 0),
(597, 1, '2026-07-06 09:31:51', '2026-07-06 09:31:51', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-s.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 09:31:51', '2026-07-06 09:31:51', '', 16, 'https://mrarif.me/everwell/?p=597', 0, 'revision', '', 0),
(598, 1, '2026-07-06 09:31:51', '2026-07-06 09:31:51', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 09:31:51', '2026-07-06 09:31:51', '', 16, 'https://mrarif.me/everwell/?p=598', 0, 'revision', '', 0),
(599, 1, '2026-07-06 09:33:37', '2026-07-06 09:33:37', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:33:37', '2026-07-06 09:33:37', '', 18, 'https://mrarif.me/everwell/?p=599', 0, 'revision', '', 0),
(600, 1, '2026-07-06 09:33:37', '2026-07-06 09:33:37', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>Medication Management</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:33:37', '2026-07-06 09:33:37', '', 18, 'https://mrarif.me/everwell/?p=600', 0, 'revision', '', 0),
(604, 1, '2026-07-06 09:36:39', '2026-07-06 09:36:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:36:39', '2026-07-06 09:36:39', '', 18, 'https://mrarif.me/everwell/?p=604', 0, 'revision', '', 0),
(601, 1, '2026-07-06 09:33:37', '2026-07-06 09:33:37', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li style=\"list-style-type: none;\"><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul></li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:33:37', '2026-07-06 09:33:37', '', 18, 'https://mrarif.me/everwell/?p=601', 0, 'revision', '', 0),
(602, 1, '2026-07-06 09:36:39', '2026-07-06 09:36:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li style=\"list-style-type: none;\"><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul></li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:36:39', '2026-07-06 09:36:39', '', 18, 'https://mrarif.me/everwell/?p=602', 0, 'revision', '', 0),
(603, 1, '2026-07-06 09:36:39', '2026-07-06 09:36:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li style=\"list-style-type: none;\"><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul></li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:36:39', '2026-07-06 09:36:39', '', 18, 'https://mrarif.me/everwell/?p=603', 0, 'revision', '', 0),
(605, 1, '2026-07-06 09:48:54', '2026-07-06 09:48:54', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:48:54', '2026-07-06 09:48:54', '', 18, 'https://mrarif.me/everwell/?p=605', 0, 'revision', '', 0),
(606, 1, '2026-07-06 09:48:54', '2026-07-06 09:48:54', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:48:54', '2026-07-06 09:48:54', '', 18, 'https://mrarif.me/everwell/?p=606', 0, 'revision', '', 0),
(610, 1, '2026-07-06 09:49:25', '2026-07-06 09:49:25', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:49:25', '2026-07-06 09:49:25', '', 18, 'https://mrarif.me/everwell/?p=610', 0, 'revision', '', 0),
(607, 1, '2026-07-06 09:48:54', '2026-07-06 09:48:54', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:48:54', '2026-07-06 09:48:54', '', 18, 'https://mrarif.me/everwell/?p=607', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(608, 1, '2026-07-06 09:49:25', '2026-07-06 09:49:25', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:49:25', '2026-07-06 09:49:25', '', 18, 'https://mrarif.me/everwell/?p=608', 0, 'revision', '', 0),
(609, 1, '2026-07-06 09:49:25', '2026-07-06 09:49:25', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />																<h2>\nGenetic Testing</h2>		<p>Utilizing genetic testing enhances our ability to anticipate your reaction to particular medications, eliminating the need for a trial-and-error approach. Additionally, we provide instruction in meditation and mindfulness techniques to aid in stabilizing your mood and effectively managing your responses to thoughts, emotions, and life events.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:49:25', '2026-07-06 09:49:25', '', 18, 'https://mrarif.me/everwell/?p=609', 0, 'revision', '', 0),
(611, 1, '2026-07-06 09:49:48', '2026-07-06 09:49:48', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:49:48', '2026-07-06 09:49:48', '', 18, 'https://mrarif.me/everwell/?p=611', 0, 'revision', '', 0),
(612, 1, '2026-07-06 09:49:48', '2026-07-06 09:49:48', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:49:48', '2026-07-06 09:49:48', '', 18, 'https://mrarif.me/everwell/?p=612', 0, 'revision', '', 0),
(613, 1, '2026-07-06 09:49:48', '2026-07-06 09:49:48', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:49:48', '2026-07-06 09:49:48', '', 18, 'https://mrarif.me/everwell/?p=613', 0, 'revision', '', 0),
(614, 1, '2026-07-06 09:51:07', '2026-07-06 09:51:07', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:51:07', '2026-07-06 09:51:07', '', 18, 'https://mrarif.me/everwell/?p=614', 0, 'revision', '', 0),
(615, 1, '2026-07-06 09:51:07', '2026-07-06 09:51:07', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:51:07', '2026-07-06 09:51:07', '', 18, 'https://mrarif.me/everwell/?p=615', 0, 'revision', '', 0),
(616, 1, '2026-07-06 09:51:07', '2026-07-06 09:51:07', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 09:51:07', '2026-07-06 09:51:07', '', 18, 'https://mrarif.me/everwell/?p=616', 0, 'revision', '', 0),
(621, 1, '2026-07-06 10:11:03', '2026-07-06 10:11:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:11:03', '2026-07-06 10:11:03', '', 12, 'https://mrarif.me/everwell/?p=621', 0, 'revision', '', 0),
(618, 1, '2026-07-06 10:10:33', '2026-07-06 10:10:33', '', 'contract_6201233', '', 'inherit', 'closed', 'closed', '', 'contract_6201233', '', '', '2026-07-06 10:10:33', '2026-07-06 10:10:33', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/contract_6201233.svg', 0, 'attachment', 'image/svg+xml', 0),
(619, 1, '2026-07-06 10:11:02', '2026-07-06 10:11:02', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:11:02', '2026-07-06 10:11:02', '', 12, 'https://mrarif.me/everwell/?p=619', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(620, 1, '2026-07-06 10:11:03', '2026-07-06 10:11:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:11:03', '2026-07-06 10:11:03', '', 12, 'https://mrarif.me/everwell/?p=620', 0, 'revision', '', 0),
(622, 1, '2026-07-06 10:11:16', '2026-07-06 10:11:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:11:16', '2026-07-06 10:11:16', '', 12, 'https://mrarif.me/everwell/?p=622', 0, 'revision', '', 0),
(623, 1, '2026-07-06 10:11:16', '2026-07-06 10:11:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:11:16', '2026-07-06 10:11:16', '', 12, 'https://mrarif.me/everwell/?p=623', 0, 'revision', '', 0),
(624, 1, '2026-07-06 10:11:16', '2026-07-06 10:11:16', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:11:16', '2026-07-06 10:11:16', '', 12, 'https://mrarif.me/everwell/?p=624', 0, 'revision', '', 0),
(625, 1, '2026-07-06 10:12:24', '2026-07-06 10:12:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:12:24', '2026-07-06 10:12:24', '', 12, 'https://mrarif.me/everwell/?p=625', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(626, 1, '2026-07-06 10:12:24', '2026-07-06 10:12:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:12:24', '2026-07-06 10:12:24', '', 12, 'https://mrarif.me/everwell/?p=626', 0, 'revision', '', 0),
(630, 1, '2026-07-06 10:12:52', '2026-07-06 10:12:52', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:12:52', '2026-07-06 10:12:52', '', 12, 'https://mrarif.me/everwell/?p=630', 0, 'revision', '', 0),
(627, 1, '2026-07-06 10:12:24', '2026-07-06 10:12:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:12:24', '2026-07-06 10:12:24', '', 12, 'https://mrarif.me/everwell/?p=627', 0, 'revision', '', 0),
(628, 1, '2026-07-06 10:12:51', '2026-07-06 10:12:51', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:12:51', '2026-07-06 10:12:51', '', 12, 'https://mrarif.me/everwell/?p=628', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(629, 1, '2026-07-06 10:12:52', '2026-07-06 10:12:52', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		<p>Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.</p>					\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:12:52', '2026-07-06 10:12:52', '', 12, 'https://mrarif.me/everwell/?p=629', 0, 'revision', '', 0),
(631, 1, '2026-07-06 10:13:03', '2026-07-06 10:13:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:13:03', '2026-07-06 10:13:03', '', 12, 'https://mrarif.me/everwell/?p=631', 0, 'revision', '', 0),
(632, 1, '2026-07-06 10:13:03', '2026-07-06 10:13:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:13:03', '2026-07-06 10:13:03', '', 12, 'https://mrarif.me/everwell/?p=632', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(633, 1, '2026-07-06 10:13:04', '2026-07-06 10:13:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:13:04', '2026-07-06 10:13:04', '', 12, 'https://mrarif.me/everwell/?p=633', 0, 'revision', '', 0),
(634, 1, '2026-07-06 10:13:40', '2026-07-06 10:13:40', '', 'pay_15896636', '', 'inherit', 'closed', 'closed', '', 'pay_15896636', '', '', '2026-07-06 10:13:40', '2026-07-06 10:13:40', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/pay_15896636.svg', 0, 'attachment', 'image/svg+xml', 0),
(635, 1, '2026-07-06 10:13:47', '2026-07-06 10:13:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:13:47', '2026-07-06 10:13:47', '', 12, 'https://mrarif.me/everwell/?p=635', 0, 'revision', '', 0),
(636, 1, '2026-07-06 10:13:47', '2026-07-06 10:13:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:13:47', '2026-07-06 10:13:47', '', 12, 'https://mrarif.me/everwell/?p=636', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(637, 1, '2026-07-06 10:13:47', '2026-07-06 10:13:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:13:47', '2026-07-06 10:13:47', '', 12, 'https://mrarif.me/everwell/?p=637', 0, 'revision', '', 0),
(638, 1, '2026-07-06 10:14:25', '2026-07-06 10:14:25', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:14:25', '2026-07-06 10:14:25', '', 12, 'https://mrarif.me/everwell/?p=638', 0, 'revision', '', 0),
(639, 1, '2026-07-06 10:14:25', '2026-07-06 10:14:25', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:14:25', '2026-07-06 10:14:25', '', 12, 'https://mrarif.me/everwell/?p=639', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(640, 1, '2026-07-06 10:14:25', '2026-07-06 10:14:25', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:14:25', '2026-07-06 10:14:25', '', 12, 'https://mrarif.me/everwell/?p=640', 0, 'revision', '', 0),
(641, 1, '2026-07-06 10:29:03', '2026-07-06 10:29:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:03', '2026-07-06 10:29:03', '', 12, 'https://mrarif.me/everwell/?p=641', 0, 'revision', '', 0),
(642, 1, '2026-07-06 10:29:03', '2026-07-06 10:29:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n									<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:03', '2026-07-06 10:29:03', '', 12, 'https://mrarif.me/everwell/?p=642', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(643, 1, '2026-07-06 10:29:04', '2026-07-06 10:29:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:04', '2026-07-06 10:29:04', '', 12, 'https://mrarif.me/everwell/?p=643', 0, 'revision', '', 0),
(644, 1, '2026-07-06 10:29:13', '2026-07-06 10:29:13', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:13', '2026-07-06 10:29:13', '', 12, 'https://mrarif.me/everwell/?p=644', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(645, 1, '2026-07-06 10:29:13', '2026-07-06 10:29:13', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:13', '2026-07-06 10:29:13', '', 12, 'https://mrarif.me/everwell/?p=645', 0, 'revision', '', 0),
(646, 1, '2026-07-06 10:29:14', '2026-07-06 10:29:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:14', '2026-07-06 10:29:14', '', 12, 'https://mrarif.me/everwell/?p=646', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(647, 1, '2026-07-06 10:29:56', '2026-07-06 10:29:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:56', '2026-07-06 10:29:56', '', 12, 'https://mrarif.me/everwell/?p=647', 0, 'revision', '', 0),
(648, 1, '2026-07-06 10:29:56', '2026-07-06 10:29:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:56', '2026-07-06 10:29:56', '', 12, 'https://mrarif.me/everwell/?p=648', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(649, 1, '2026-07-06 10:29:57', '2026-07-06 10:29:57', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:29:57', '2026-07-06 10:29:57', '', 12, 'https://mrarif.me/everwell/?p=649', 0, 'revision', '', 0),
(650, 1, '2026-07-06 10:43:57', '2026-07-06 10:43:57', '', 'weight loss ab', '', 'inherit', 'closed', 'closed', '', 'weight-loss-ab', '', '', '2026-07-06 10:43:57', '2026-07-06 10:43:57', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp', 0, 'attachment', 'image/webp', 0),
(651, 1, '2026-07-06 10:44:03', '2026-07-06 10:44:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:44:03', '2026-07-06 10:44:03', '', 12, 'https://mrarif.me/everwell/?p=651', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(652, 1, '2026-07-06 10:44:03', '2026-07-06 10:44:03', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:44:03', '2026-07-06 10:44:03', '', 12, 'https://mrarif.me/everwell/?p=652', 0, 'revision', '', 0),
(653, 1, '2026-07-06 10:44:04', '2026-07-06 10:44:04', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:44:04', '2026-07-06 10:44:04', '', 12, 'https://mrarif.me/everwell/?p=653', 0, 'revision', '', 0),
(654, 1, '2026-07-06 10:46:08', '2026-07-06 10:46:08', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 10:46:08', '2026-07-06 10:46:08', '', 16, 'https://mrarif.me/everwell/?p=654', 0, 'revision', '', 0),
(655, 1, '2026-07-06 10:46:08', '2026-07-06 10:46:08', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 10:46:08', '2026-07-06 10:46:08', '', 16, 'https://mrarif.me/everwell/?p=655', 0, 'revision', '', 0),
(656, 1, '2026-07-06 10:46:09', '2026-07-06 10:46:09', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 10:46:09', '2026-07-06 10:46:09', '', 16, 'https://mrarif.me/everwell/?p=656', 0, 'revision', '', 0),
(657, 1, '2026-07-06 10:46:38', '2026-07-06 10:46:38', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:46:38', '2026-07-06 10:46:38', '', 22, 'https://mrarif.me/everwell/?p=657', 0, 'revision', '', 0),
(658, 1, '2026-07-06 10:46:39', '2026-07-06 10:46:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:46:39', '2026-07-06 10:46:39', '', 22, 'https://mrarif.me/everwell/?p=658', 0, 'revision', '', 0),
(659, 1, '2026-07-06 10:46:39', '2026-07-06 10:46:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:46:39', '2026-07-06 10:46:39', '', 22, 'https://mrarif.me/everwell/?p=659', 0, 'revision', '', 0),
(660, 1, '2026-07-06 10:50:25', '2026-07-06 10:50:25', '', 'Weight Optimization mid', '', 'inherit', 'closed', 'closed', '', 'weight-optimization-mid', '', '', '2026-07-06 10:50:25', '2026-07-06 10:50:25', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(661, 1, '2026-07-06 10:50:36', '2026-07-06 10:50:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:50:36', '2026-07-06 10:50:36', '', 12, 'https://mrarif.me/everwell/?p=661', 0, 'revision', '', 0),
(662, 1, '2026-07-06 10:50:36', '2026-07-06 10:50:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:50:36', '2026-07-06 10:50:36', '', 12, 'https://mrarif.me/everwell/?p=662', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(663, 1, '2026-07-06 10:50:36', '2026-07-06 10:50:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 10:50:36', '2026-07-06 10:50:36', '', 12, 'https://mrarif.me/everwell/?p=663', 0, 'revision', '', 0),
(664, 1, '2026-07-06 10:51:08', '2026-07-06 10:51:08', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 10:51:08', '2026-07-06 10:51:08', '', 16, 'https://mrarif.me/everwell/?p=664', 0, 'revision', '', 0),
(665, 1, '2026-07-06 10:51:08', '2026-07-06 10:51:08', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 10:51:08', '2026-07-06 10:51:08', '', 16, 'https://mrarif.me/everwell/?p=665', 0, 'revision', '', 0),
(666, 1, '2026-07-06 10:51:08', '2026-07-06 10:51:08', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 10:51:08', '2026-07-06 10:51:08', '', 16, 'https://mrarif.me/everwell/?p=666', 0, 'revision', '', 0),
(667, 1, '2026-07-06 10:51:42', '2026-07-06 10:51:42', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:51:42', '2026-07-06 10:51:42', '', 22, 'https://mrarif.me/everwell/?p=667', 0, 'revision', '', 0),
(668, 1, '2026-07-06 10:51:42', '2026-07-06 10:51:42', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/weight-loss-ab.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:51:42', '2026-07-06 10:51:42', '', 22, 'https://mrarif.me/everwell/?p=668', 0, 'revision', '', 0),
(669, 1, '2026-07-06 10:51:42', '2026-07-06 10:51:42', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:51:42', '2026-07-06 10:51:42', '', 22, 'https://mrarif.me/everwell/?p=669', 0, 'revision', '', 0),
(670, 1, '2026-07-06 10:52:07', '2026-07-06 10:52:07', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:52:07', '2026-07-06 10:52:07', '', 22, 'https://mrarif.me/everwell/?p=670', 0, 'revision', '', 0),
(671, 1, '2026-07-06 10:52:07', '2026-07-06 10:52:07', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:52:07', '2026-07-06 10:52:07', '', 22, 'https://mrarif.me/everwell/?p=671', 0, 'revision', '', 0),
(672, 1, '2026-07-06 10:52:07', '2026-07-06 10:52:07', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-06 10:52:07', '2026-07-06 10:52:07', '', 22, 'https://mrarif.me/everwell/?p=672', 0, 'revision', '', 0),
(673, 1, '2026-07-06 11:11:14', '2026-07-06 11:11:14', '', 'EVERWELL-LONGEVITY-&-WELLNESS-banner-main', '', 'inherit', 'closed', 'closed', '', 'everwell-longevity-wellness-banner-main', '', '', '2026-07-06 11:11:14', '2026-07-06 11:11:14', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg', 0, 'attachment', 'image/jpeg', 0),
(674, 1, '2026-07-06 11:11:22', '2026-07-06 11:11:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:11:22', '2026-07-06 11:11:22', '', 12, 'https://mrarif.me/everwell/?p=674', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(675, 1, '2026-07-06 11:11:22', '2026-07-06 11:11:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-banner-ab-1.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:11:22', '2026-07-06 11:11:22', '', 12, 'https://mrarif.me/everwell/?p=675', 0, 'revision', '', 0),
(844, 1, '2026-07-08 10:43:05', '2026-07-08 10:43:05', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:43:05', '2026-07-08 10:43:05', '', 12, 'https://mrarif.me/everwell/?p=844', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(676, 1, '2026-07-06 11:11:22', '2026-07-06 11:11:22', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:11:22', '2026-07-06 11:11:22', '', 12, 'https://mrarif.me/everwell/?p=676', 0, 'revision', '', 0),
(677, 1, '2026-07-06 11:18:51', '2026-07-06 11:18:51', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 11:18:51', '2026-07-06 11:18:51', '', 18, 'https://mrarif.me/everwell/?p=677', 0, 'revision', '', 0),
(678, 1, '2026-07-06 11:18:51', '2026-07-06 11:18:51', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 11:18:51', '2026-07-06 11:18:51', '', 18, 'https://mrarif.me/everwell/?p=678', 0, 'revision', '', 0),
(767, 1, '2026-07-07 07:36:17', '2026-07-07 07:36:17', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-07 07:36:17', '2026-07-07 07:36:17', '', 18, 'https://mrarif.me/everwell/?p=767', 0, 'revision', '', 0),
(679, 1, '2026-07-06 11:18:52', '2026-07-06 11:18:52', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-06 11:18:52', '2026-07-06 11:18:52', '', 18, 'https://mrarif.me/everwell/?p=679', 0, 'revision', '', 0),
(848, 1, '2026-07-08 10:55:59', '2026-07-08 10:55:59', '<h6>About Us</h6>							\n				EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Areas We Serve</h6>							\n									<ul>\n							<li>\n										Serving the Shreveport-Bossier, LA and Homer, LA area\n									</li>\n						</ul>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-08 10:55:59', '2026-07-08 10:55:59', '', 377, 'https://mrarif.me/everwell/?p=848', 0, 'revision', '', 0),
(681, 1, '2026-07-06 11:26:34', '2026-07-06 11:26:34', '<h6>About Us</h6>							\n				EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=300%20Murrell%20Street%20Homer%2C%20LA%2071040&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"300 Murrell Street Homer, LA 71040\"\n					aria-label=\"300 Murrell Street Homer, LA 71040\"\n			></iframe>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-06 11:26:34', '2026-07-06 11:26:34', '', 377, 'https://mrarif.me/everwell/?p=681', 0, 'revision', '', 0),
(682, 1, '2026-07-06 11:26:48', '2026-07-06 11:26:48', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-06 11:26:48', '2026-07-06 11:26:48', '', 36, 'https://mrarif.me/everwell/?p=682', 0, 'revision', '', 0),
(683, 1, '2026-07-06 11:26:48', '2026-07-06 11:26:48', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.481963,-93.706498&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=2924%20Knight%20St%20Bldg%203%20suite%20357%20Shreveport%2C%20LA%2071105%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										2924 Knight Street Building 3, Suite 357, Shreveport, LA, USA\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@everwell.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@everwell.com\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-06 11:26:48', '2026-07-06 11:26:48', '', 36, 'https://mrarif.me/everwell/?p=683', 0, 'revision', '', 0),
(905, 1, '2026-07-08 20:28:46', '2026-07-08 20:28:46', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-08 20:28:46', '2026-07-08 20:28:46', '', 36, 'https://mrarif.me/everwell/?p=905', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(684, 1, '2026-07-06 11:26:48', '2026-07-06 11:26:48', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-06 11:26:48', '2026-07-06 11:26:48', '', 36, 'https://mrarif.me/everwell/?p=684', 0, 'revision', '', 0),
(685, 1, '2026-07-06 11:28:13', '2026-07-06 11:28:13', '<ul>\n							<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Schedule a Consultation\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-06 11:28:13', '2026-07-06 11:28:13', '', 66, 'https://mrarif.me/everwell/?p=685', 0, 'revision', '', 0),
(686, 1, '2026-07-06 11:29:08', '2026-07-06 11:29:08', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-06 11:29:08', '2026-07-06 11:29:08', '', 36, 'https://mrarif.me/everwell/?p=686', 0, 'revision', '', 0),
(687, 1, '2026-07-06 11:29:08', '2026-07-06 11:29:08', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-06 11:29:08', '2026-07-06 11:29:08', '', 36, 'https://mrarif.me/everwell/?p=687', 0, 'revision', '', 0),
(688, 1, '2026-07-06 11:29:08', '2026-07-06 11:29:08', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-06 11:29:08', '2026-07-06 11:29:08', '', 36, 'https://mrarif.me/everwell/?p=688', 0, 'revision', '', 0),
(689, 1, '2026-07-06 11:29:56', '2026-07-06 11:29:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:29:56', '2026-07-06 11:29:56', '', 12, 'https://mrarif.me/everwell/?p=689', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(690, 1, '2026-07-06 11:29:56', '2026-07-06 11:29:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:29:56', '2026-07-06 11:29:56', '', 12, 'https://mrarif.me/everwell/?p=690', 0, 'revision', '', 0),
(691, 1, '2026-07-06 11:29:56', '2026-07-06 11:29:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:29:56', '2026-07-06 11:29:56', '', 12, 'https://mrarif.me/everwell/?p=691', 0, 'revision', '', 0),
(696, 1, '2026-07-06 11:42:38', '2026-07-06 11:42:38', '', 'WELLNESS--main', '', 'inherit', 'closed', 'closed', '', 'wellness-main', '', '', '2026-07-06 11:42:38', '2026-07-06 11:42:38', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-main.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(693, 1, '2026-07-06 11:41:26', '2026-07-06 11:41:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:41:26', '2026-07-06 11:41:26', '', 12, 'https://mrarif.me/everwell/?p=693', 0, 'revision', '', 0),
(694, 1, '2026-07-06 11:41:26', '2026-07-06 11:41:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:41:26', '2026-07-06 11:41:26', '', 12, 'https://mrarif.me/everwell/?p=694', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(695, 1, '2026-07-06 11:41:27', '2026-07-06 11:41:27', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-ab-1.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:41:27', '2026-07-06 11:41:27', '', 12, 'https://mrarif.me/everwell/?p=695', 0, 'revision', '', 0),
(697, 1, '2026-07-06 11:42:44', '2026-07-06 11:42:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-ab-1.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:42:44', '2026-07-06 11:42:44', '', 12, 'https://mrarif.me/everwell/?p=697', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(698, 1, '2026-07-06 11:42:45', '2026-07-06 11:42:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-ab-1.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:42:45', '2026-07-06 11:42:45', '', 12, 'https://mrarif.me/everwell/?p=698', 0, 'revision', '', 0),
(699, 1, '2026-07-06 11:42:45', '2026-07-06 11:42:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:42:45', '2026-07-06 11:42:45', '', 12, 'https://mrarif.me/everwell/?p=699', 0, 'revision', '', 0),
(700, 1, '2026-07-06 11:49:25', '2026-07-06 11:49:25', '', 'mental-health-ab', '', 'inherit', 'closed', 'closed', '', 'mental-health-ab', '', '', '2026-07-06 11:49:25', '2026-07-06 11:49:25', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(701, 1, '2026-07-06 11:49:47', '2026-07-06 11:49:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:49:47', '2026-07-06 11:49:47', '', 12, 'https://mrarif.me/everwell/?p=701', 0, 'revision', '', 0),
(702, 1, '2026-07-06 11:49:47', '2026-07-06 11:49:47', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:49:47', '2026-07-06 11:49:47', '', 12, 'https://mrarif.me/everwell/?p=702', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(703, 1, '2026-07-06 11:49:48', '2026-07-06 11:49:48', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-main.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:49:48', '2026-07-06 11:49:48', '', 12, 'https://mrarif.me/everwell/?p=703', 0, 'revision', '', 0),
(704, 1, '2026-07-06 11:51:04', '2026-07-06 11:51:04', '', 'wellness-good', '', 'inherit', 'closed', 'closed', '', 'wellness-good', '', '', '2026-07-06 11:51:04', '2026-07-06 11:51:04', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg', 0, 'attachment', 'image/jpeg', 0),
(705, 1, '2026-07-06 11:51:14', '2026-07-06 11:51:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-main.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:51:14', '2026-07-06 11:51:14', '', 12, 'https://mrarif.me/everwell/?p=705', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(706, 1, '2026-07-06 11:51:14', '2026-07-06 11:51:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/WELLNESS-main.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:51:14', '2026-07-06 11:51:14', '', 12, 'https://mrarif.me/everwell/?p=706', 0, 'revision', '', 0),
(707, 1, '2026-07-06 11:51:14', '2026-07-06 11:51:14', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:51:14', '2026-07-06 11:51:14', '', 12, 'https://mrarif.me/everwell/?p=707', 0, 'revision', '', 0),
(708, 1, '2026-07-06 11:54:30', '2026-07-06 11:54:30', '', 'primary care', '', 'inherit', 'closed', 'closed', '', 'primary-care', '', '', '2026-07-06 11:54:30', '2026-07-06 11:54:30', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(709, 1, '2026-07-06 11:54:35', '2026-07-06 11:54:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:54:35', '2026-07-06 11:54:35', '', 12, 'https://mrarif.me/everwell/?p=709', 0, 'revision', '', 0),
(710, 1, '2026-07-06 11:54:35', '2026-07-06 11:54:35', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/prymary.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:54:35', '2026-07-06 11:54:35', '', 12, 'https://mrarif.me/everwell/?p=710', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(711, 1, '2026-07-06 11:54:36', '2026-07-06 11:54:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:54:36', '2026-07-06 11:54:36', '', 12, 'https://mrarif.me/everwell/?p=711', 0, 'revision', '', 0),
(712, 1, '2026-07-06 11:59:09', '2026-07-06 11:59:09', '', 'Schedule a Consultation a', '', 'inherit', 'closed', 'closed', '', 'schedule-a-consultation-a', '', '', '2026-07-06 11:59:09', '2026-07-06 11:59:09', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Schedule-a-Consultation-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(713, 1, '2026-07-06 11:59:23', '2026-07-06 11:59:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:59:23', '2026-07-06 11:59:23', '', 12, 'https://mrarif.me/everwell/?p=713', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(714, 1, '2026-07-06 11:59:23', '2026-07-06 11:59:23', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:59:23', '2026-07-06 11:59:23', '', 12, 'https://mrarif.me/everwell/?p=714', 0, 'revision', '', 0),
(715, 1, '2026-07-06 11:59:24', '2026-07-06 11:59:24', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 11:59:24', '2026-07-06 11:59:24', '', 12, 'https://mrarif.me/everwell/?p=715', 0, 'revision', '', 0),
(716, 1, '2026-07-06 12:01:08', '2026-07-06 12:01:08', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 12:01:08', '2026-07-06 12:01:08', '', 14, 'https://mrarif.me/everwell/?p=716', 0, 'revision', '', 0),
(717, 1, '2026-07-06 12:01:08', '2026-07-06 12:01:08', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-photo.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-mental-.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 12:01:08', '2026-07-06 12:01:08', '', 14, 'https://mrarif.me/everwell/?p=717', 0, 'revision', '', 0),
(718, 1, '2026-07-06 12:01:09', '2026-07-06 12:01:09', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 12:01:09', '2026-07-06 12:01:09', '', 14, 'https://mrarif.me/everwell/?p=718', 0, 'revision', '', 0),
(719, 1, '2026-07-06 12:03:28', '2026-07-06 12:03:28', '', 'Our Mission av', '', 'inherit', 'closed', 'closed', '', 'our-mission-av', '', '', '2026-07-06 12:03:28', '2026-07-06 12:03:28', '', 14, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg', 0, 'attachment', 'image/jpeg', 0),
(720, 1, '2026-07-06 12:03:44', '2026-07-06 12:03:44', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 12:03:44', '2026-07-06 12:03:44', '', 14, 'https://mrarif.me/everwell/?p=720', 0, 'revision', '', 0),
(721, 1, '2026-07-06 12:03:44', '2026-07-06 12:03:44', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"665\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Compassionate-care-mental.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-06 12:03:44', '2026-07-06 12:03:44', '', 14, 'https://mrarif.me/everwell/?p=721', 0, 'revision', '', 0),
(723, 1, '2026-07-06 12:11:50', '2026-07-06 12:11:50', '', 'pegneci-ab', '', 'inherit', 'closed', 'closed', '', 'pegneci-ab', '', '', '2026-07-06 12:11:50', '2026-07-06 12:11:50', '', 16, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg', 0, 'attachment', 'image/jpeg', 0),
(724, 1, '2026-07-06 12:12:01', '2026-07-06 12:12:01', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 12:12:01', '2026-07-06 12:12:01', '', 16, 'https://mrarif.me/everwell/?p=724', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(725, 1, '2026-07-06 12:12:01', '2026-07-06 12:12:01', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 12:12:01', '2026-07-06 12:12:01', '', 16, 'https://mrarif.me/everwell/?p=725', 0, 'revision', '', 0),
(726, 1, '2026-07-06 12:12:02', '2026-07-06 12:12:02', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-06 12:12:02', '2026-07-06 12:12:02', '', 16, 'https://mrarif.me/everwell/?p=726', 0, 'revision', '', 0),
(727, 1, '2026-07-06 12:16:44', '2026-07-06 12:16:44', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-06 12:16:44', '2026-07-06 12:16:44', '', 26, 'https://mrarif.me/everwell/?p=727', 0, 'revision', '', 0),
(728, 1, '2026-07-06 12:16:44', '2026-07-06 12:16:44', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Birth-Control-Consultations-a.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-06 12:16:44', '2026-07-06 12:16:44', '', 26, 'https://mrarif.me/everwell/?p=728', 0, 'revision', '', 0),
(729, 1, '2026-07-06 12:16:45', '2026-07-06 12:16:45', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-06 12:16:45', '2026-07-06 12:16:45', '', 26, 'https://mrarif.me/everwell/?p=729', 0, 'revision', '', 0),
(730, 1, '2026-07-06 12:20:39', '2026-07-06 12:20:39', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:20:39', '2026-07-06 12:20:39', '', 12, 'https://mrarif.me/everwell/?p=730', 0, 'revision', '', 0),
(731, 1, '2026-07-06 12:20:39', '2026-07-06 12:20:39', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:20:39', '2026-07-06 12:20:39', '', 12, 'https://mrarif.me/everwell/?p=731', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(732, 1, '2026-07-06 12:20:40', '2026-07-06 12:20:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:20:40', '2026-07-06 12:20:40', '', 12, 'https://mrarif.me/everwell/?p=732', 0, 'revision', '', 0),
(733, 1, '2026-07-06 12:20:45', '2026-07-06 12:20:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:20:45', '2026-07-06 12:20:45', '', 12, 'https://mrarif.me/everwell/?p=733', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(734, 1, '2026-07-06 12:20:45', '2026-07-06 12:20:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:20:45', '2026-07-06 12:20:45', '', 12, 'https://mrarif.me/everwell/?p=734', 0, 'revision', '', 0),
(735, 1, '2026-07-06 12:20:46', '2026-07-06 12:20:46', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:20:46', '2026-07-06 12:20:46', '', 12, 'https://mrarif.me/everwell/?p=735', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(736, 1, '2026-07-06 12:21:07', '2026-07-06 12:21:07', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:21:07', '2026-07-06 12:21:07', '', 12, 'https://mrarif.me/everwell/?p=736', 0, 'revision', '', 0),
(737, 1, '2026-07-06 12:21:07', '2026-07-06 12:21:07', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:21:07', '2026-07-06 12:21:07', '', 12, 'https://mrarif.me/everwell/?p=737', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(738, 1, '2026-07-06 12:21:08', '2026-07-06 12:21:08', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:21:08', '2026-07-06 12:21:08', '', 12, 'https://mrarif.me/everwell/?p=738', 0, 'revision', '', 0),
(739, 1, '2026-07-06 12:21:45', '2026-07-06 12:21:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:21:45', '2026-07-06 12:21:45', '', 12, 'https://mrarif.me/everwell/?p=739', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(740, 1, '2026-07-06 12:21:45', '2026-07-06 12:21:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:21:45', '2026-07-06 12:21:45', '', 12, 'https://mrarif.me/everwell/?p=740', 0, 'revision', '', 0),
(741, 1, '2026-07-06 12:21:46', '2026-07-06 12:21:46', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:21:46', '2026-07-06 12:21:46', '', 12, 'https://mrarif.me/everwell/?p=741', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(742, 1, '2026-07-06 12:22:27', '2026-07-06 12:22:27', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:22:27', '2026-07-06 12:22:27', '', 12, 'https://mrarif.me/everwell/?p=742', 0, 'revision', '', 0),
(743, 1, '2026-07-06 12:22:28', '2026-07-06 12:22:28', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:22:28', '2026-07-06 12:22:28', '', 12, 'https://mrarif.me/everwell/?p=743', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(744, 1, '2026-07-06 12:22:28', '2026-07-06 12:22:28', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:22:28', '2026-07-06 12:22:28', '', 12, 'https://mrarif.me/everwell/?p=744', 0, 'revision', '', 0),
(745, 1, '2026-07-06 12:22:45', '2026-07-06 12:22:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:22:45', '2026-07-06 12:22:45', '', 12, 'https://mrarif.me/everwell/?p=745', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(746, 1, '2026-07-06 12:22:45', '2026-07-06 12:22:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:22:45', '2026-07-06 12:22:45', '', 12, 'https://mrarif.me/everwell/?p=746', 0, 'revision', '', 0),
(747, 1, '2026-07-06 12:22:45', '2026-07-06 12:22:45', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-06 12:22:45', '2026-07-06 12:22:45', '', 12, 'https://mrarif.me/everwell/?p=747', 0, 'revision', '', 0),
(748, 1, '2026-07-07 07:17:47', '2026-07-07 07:17:47', '', 'Caucasian-perso-a', '', 'inherit', 'closed', 'closed', '', 'caucasian-perso-a', '', '', '2026-07-07 07:17:47', '2026-07-07 07:17:47', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(749, 1, '2026-07-07 07:17:55', '2026-07-07 07:17:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:17:55', '2026-07-07 07:17:55', '', 12, 'https://mrarif.me/everwell/?p=749', 0, 'revision', '', 0),
(750, 1, '2026-07-07 07:17:55', '2026-07-07 07:17:55', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:17:55', '2026-07-07 07:17:55', '', 12, 'https://mrarif.me/everwell/?p=750', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(751, 1, '2026-07-07 07:17:56', '2026-07-07 07:17:56', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:17:56', '2026-07-07 07:17:56', '', 12, 'https://mrarif.me/everwell/?p=751', 0, 'revision', '', 0),
(752, 1, '2026-07-07 07:21:38', '2026-07-07 07:21:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:21:38', '2026-07-07 07:21:38', '', 12, 'https://mrarif.me/everwell/?p=752', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(753, 1, '2026-07-07 07:21:38', '2026-07-07 07:21:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:21:38', '2026-07-07 07:21:38', '', 12, 'https://mrarif.me/everwell/?p=753', 0, 'revision', '', 0),
(793, 1, '2026-07-07 08:07:26', '2026-07-07 08:07:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:07:26', '2026-07-07 08:07:26', '', 12, 'https://mrarif.me/everwell/?p=793', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(754, 1, '2026-07-07 07:21:38', '2026-07-07 07:21:38', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:21:38', '2026-07-07 07:21:38', '', 12, 'https://mrarif.me/everwell/?p=754', 0, 'revision', '', 0),
(755, 1, '2026-07-07 07:25:37', '2026-07-07 07:25:37', '', 'mental healt a', '', 'inherit', 'closed', 'closed', '', 'mental-healt-a', '', '', '2026-07-07 07:25:37', '2026-07-07 07:25:37', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(756, 1, '2026-07-07 07:25:43', '2026-07-07 07:25:43', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:25:43', '2026-07-07 07:25:43', '', 12, 'https://mrarif.me/everwell/?p=756', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(757, 1, '2026-07-07 07:25:44', '2026-07-07 07:25:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:25:44', '2026-07-07 07:25:44', '', 12, 'https://mrarif.me/everwell/?p=757', 0, 'revision', '', 0),
(758, 1, '2026-07-07 07:25:44', '2026-07-07 07:25:44', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 07:25:44', '2026-07-07 07:25:44', '', 12, 'https://mrarif.me/everwell/?p=758', 0, 'revision', '', 0),
(759, 1, '2026-07-07 07:26:36', '2026-07-07 07:26:36', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:26:36', '2026-07-07 07:26:36', '', 16, 'https://mrarif.me/everwell/?p=759', 0, 'revision', '', 0),
(760, 1, '2026-07-07 07:26:36', '2026-07-07 07:26:36', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:26:36', '2026-07-07 07:26:36', '', 16, 'https://mrarif.me/everwell/?p=760', 0, 'revision', '', 0),
(761, 1, '2026-07-07 07:26:36', '2026-07-07 07:26:36', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:26:36', '2026-07-07 07:26:36', '', 16, 'https://mrarif.me/everwell/?p=761', 0, 'revision', '', 0),
(762, 1, '2026-07-07 07:27:13', '2026-07-07 07:27:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-07 07:27:13', '2026-07-07 07:27:13', '', 18, 'https://mrarif.me/everwell/?p=762', 0, 'revision', '', 0),
(763, 1, '2026-07-07 07:27:13', '2026-07-07 07:27:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Mental-Wellness-aa.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-07 07:27:13', '2026-07-07 07:27:13', '', 18, 'https://mrarif.me/everwell/?p=763', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(764, 1, '2026-07-07 07:27:13', '2026-07-07 07:27:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-07 07:27:13', '2026-07-07 07:27:13', '', 18, 'https://mrarif.me/everwell/?p=764', 0, 'revision', '', 0),
(765, 1, '2026-07-07 07:36:17', '2026-07-07 07:36:17', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-07 07:36:17', '2026-07-07 07:36:17', '', 18, 'https://mrarif.me/everwell/?p=765', 0, 'revision', '', 0),
(766, 1, '2026-07-07 07:36:17', '2026-07-07 07:36:17', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, bipolar disorder, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-07 07:36:17', '2026-07-07 07:36:17', '', 18, 'https://mrarif.me/everwell/?p=766', 0, 'revision', '', 0),
(768, 1, '2026-07-07 07:43:10', '2026-07-07 07:43:10', '', 'urgent care real a', '', 'inherit', 'closed', 'closed', '', 'urgent-care-real-a', '', '', '2026-07-07 07:43:10', '2026-07-07 07:43:10', '', 16, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/urgent-care-real-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(769, 1, '2026-07-07 07:43:17', '2026-07-07 07:43:17', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:43:17', '2026-07-07 07:43:17', '', 16, 'https://mrarif.me/everwell/?p=769', 0, 'revision', '', 0),
(770, 1, '2026-07-07 07:43:17', '2026-07-07 07:43:17', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:43:17', '2026-07-07 07:43:17', '', 16, 'https://mrarif.me/everwell/?p=770', 0, 'revision', '', 0),
(772, 1, '2026-07-07 07:43:58', '2026-07-07 07:43:58', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-07 07:43:58', '2026-07-07 07:43:58', '', 24, 'https://mrarif.me/everwell/?p=772', 0, 'revision', '', 0),
(773, 1, '2026-07-07 07:43:58', '2026-07-07 07:43:58', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Urgent-Care-health-care-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-07 07:43:58', '2026-07-07 07:43:58', '', 24, 'https://mrarif.me/everwell/?p=773', 0, 'revision', '', 0),
(774, 1, '2026-07-07 07:43:58', '2026-07-07 07:43:58', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgent-care-real-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-07 07:43:58', '2026-07-07 07:43:58', '', 24, 'https://mrarif.me/everwell/?p=774', 0, 'revision', '', 0),
(775, 1, '2026-07-07 07:48:11', '2026-07-07 07:48:11', '', 'urgen care ab', '', 'inherit', 'closed', 'closed', '', 'urgen-care-ab', '', '', '2026-07-07 07:48:11', '2026-07-07 07:48:11', '', 16, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg', 0, 'attachment', 'image/jpeg', 0),
(776, 1, '2026-07-07 07:48:58', '2026-07-07 07:48:58', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgent-care-real-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:48:58', '2026-07-07 07:48:58', '', 16, 'https://mrarif.me/everwell/?p=776', 0, 'revision', '', 0),
(777, 1, '2026-07-07 07:48:58', '2026-07-07 07:48:58', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgent-care-real-a.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:48:58', '2026-07-07 07:48:58', '', 16, 'https://mrarif.me/everwell/?p=777', 0, 'revision', '', 0),
(778, 1, '2026-07-07 07:48:58', '2026-07-07 07:48:58', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 07:48:58', '2026-07-07 07:48:58', '', 16, 'https://mrarif.me/everwell/?p=778', 0, 'revision', '', 0),
(779, 1, '2026-07-07 07:50:21', '2026-07-07 07:50:21', '', 'single urgen a', '', 'inherit', 'closed', 'closed', '', 'single-urgen-a', '', '', '2026-07-07 07:50:21', '2026-07-07 07:50:21', '', 24, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(780, 1, '2026-07-07 07:50:26', '2026-07-07 07:50:26', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgent-care-real-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-07 07:50:26', '2026-07-07 07:50:26', '', 24, 'https://mrarif.me/everwell/?p=780', 0, 'revision', '', 0),
(781, 1, '2026-07-07 07:50:26', '2026-07-07 07:50:26', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgent-care-real-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-07 07:50:26', '2026-07-07 07:50:26', '', 24, 'https://mrarif.me/everwell/?p=781', 0, 'revision', '', 0),
(782, 1, '2026-07-07 07:50:26', '2026-07-07 07:50:26', '<img width=\"1200\" height=\"896\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-07 07:50:26', '2026-07-07 07:50:26', '', 24, 'https://mrarif.me/everwell/?p=782', 0, 'revision', '', 0),
(783, 1, '2026-07-07 07:59:24', '2026-07-07 07:59:24', '', 'Personalized birth control care aa', '', 'inherit', 'closed', 'closed', '', 'personalized-birth-control-care-aa', '', '', '2026-07-07 07:59:24', '2026-07-07 07:59:24', '', 26, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(784, 1, '2026-07-07 07:59:29', '2026-07-07 07:59:29', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-07 07:59:29', '2026-07-07 07:59:29', '', 26, 'https://mrarif.me/everwell/?p=784', 0, 'revision', '', 0),
(785, 1, '2026-07-07 07:59:29', '2026-07-07 07:59:29', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-07 07:59:29', '2026-07-07 07:59:29', '', 26, 'https://mrarif.me/everwell/?p=785', 0, 'revision', '', 0),
(786, 1, '2026-07-07 07:59:29', '2026-07-07 07:59:29', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-07 07:59:29', '2026-07-07 07:59:29', '', 26, 'https://mrarif.me/everwell/?p=786', 0, 'revision', '', 0),
(787, 1, '2026-07-07 08:00:04', '2026-07-07 08:00:04', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 08:00:04', '2026-07-07 08:00:04', '', 16, 'https://mrarif.me/everwell/?p=787', 0, 'revision', '', 0),
(788, 1, '2026-07-07 08:00:04', '2026-07-07 08:00:04', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/pegneci-ab.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 08:00:04', '2026-07-07 08:00:04', '', 16, 'https://mrarif.me/everwell/?p=788', 0, 'revision', '', 0),
(789, 1, '2026-07-07 08:00:04', '2026-07-07 08:00:04', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-07 08:00:04', '2026-07-07 08:00:04', '', 16, 'https://mrarif.me/everwell/?p=789', 0, 'revision', '', 0),
(794, 1, '2026-07-07 08:09:32', '2026-07-07 08:09:32', '', 'about-top-new', '', 'inherit', 'closed', 'closed', '', 'about-top-new', '', '', '2026-07-07 08:09:32', '2026-07-07 08:09:32', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(791, 1, '2026-07-07 08:07:26', '2026-07-07 08:07:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:07:26', '2026-07-07 08:07:26', '', 12, 'https://mrarif.me/everwell/?p=791', 0, 'revision', '', 0),
(792, 1, '2026-07-07 08:07:26', '2026-07-07 08:07:26', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:07:26', '2026-07-07 08:07:26', '', 12, 'https://mrarif.me/everwell/?p=792', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(795, 1, '2026-07-07 08:09:39', '2026-07-07 08:09:39', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:09:39', '2026-07-07 08:09:39', '', 12, 'https://mrarif.me/everwell/?p=795', 0, 'revision', '', 0),
(796, 1, '2026-07-07 08:09:39', '2026-07-07 08:09:39', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:09:39', '2026-07-07 08:09:39', '', 12, 'https://mrarif.me/everwell/?p=796', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(814, 1, '2026-07-08 09:55:37', '2026-07-08 09:55:37', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:55:37', '2026-07-08 09:55:37', '', 12, 'https://mrarif.me/everwell/?p=814', 0, 'revision', '', 0),
(797, 1, '2026-07-07 08:09:40', '2026-07-07 08:09:40', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:09:40', '2026-07-07 08:09:40', '', 12, 'https://mrarif.me/everwell/?p=797', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(798, 1, '2026-07-07 08:10:31', '2026-07-07 08:10:31', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:10:31', '2026-07-07 08:10:31', '', 12, 'https://mrarif.me/everwell/?p=798', 0, 'revision', '', 0),
(799, 1, '2026-07-07 08:10:31', '2026-07-07 08:10:31', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:10:31', '2026-07-07 08:10:31', '', 12, 'https://mrarif.me/everwell/?p=799', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(800, 1, '2026-07-07 08:10:32', '2026-07-07 08:10:32', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:10:32', '2026-07-07 08:10:32', '', 12, 'https://mrarif.me/everwell/?p=800', 0, 'revision', '', 0),
(801, 1, '2026-07-07 08:11:22', '2026-07-07 08:11:22', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-07 08:11:22', '2026-07-07 08:11:22', '', 14, 'https://mrarif.me/everwell/?p=801', 0, 'revision', '', 0),
(802, 1, '2026-07-07 08:11:22', '2026-07-07 08:11:22', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/wellness-good.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-07 08:11:22', '2026-07-07 08:11:22', '', 14, 'https://mrarif.me/everwell/?p=802', 0, 'revision', '', 0),
(803, 1, '2026-07-07 08:11:23', '2026-07-07 08:11:23', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-07 08:11:23', '2026-07-07 08:11:23', '', 14, 'https://mrarif.me/everwell/?p=803', 0, 'revision', '', 0),
(804, 1, '2026-07-07 08:13:01', '2026-07-07 08:13:01', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:13:01', '2026-07-07 08:13:01', '', 12, 'https://mrarif.me/everwell/?p=804', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(805, 1, '2026-07-07 08:13:01', '2026-07-07 08:13:01', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:13:01', '2026-07-07 08:13:01', '', 12, 'https://mrarif.me/everwell/?p=805', 0, 'revision', '', 0),
(806, 1, '2026-07-07 08:13:01', '2026-07-07 08:13:01', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-07 08:13:01', '2026-07-07 08:13:01', '', 12, 'https://mrarif.me/everwell/?p=806', 0, 'revision', '', 0),
(807, 1, '2026-07-07 08:14:12', '2026-07-07 08:14:12', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-07 08:14:12', '2026-07-07 08:14:12', '', 36, 'https://mrarif.me/everwell/?p=807', 0, 'revision', '', 0),
(808, 1, '2026-07-07 08:14:12', '2026-07-07 08:14:12', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-07 08:14:12', '2026-07-07 08:14:12', '', 36, 'https://mrarif.me/everwell/?p=808', 0, 'revision', '', 0),
(809, 1, '2026-07-07 08:14:12', '2026-07-07 08:14:12', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-07 08:14:12', '2026-07-07 08:14:12', '', 36, 'https://mrarif.me/everwell/?p=809', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(813, 1, '2026-07-08 09:55:36', '2026-07-08 09:55:36', '<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-LONGEVITY-WELLNESS-banner-main.jpg\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:55:36', '2026-07-08 09:55:36', '', 12, 'https://mrarif.me/everwell/?p=813', 0, 'revision', '', 0),
(815, 1, '2026-07-08 09:56:29', '2026-07-08 09:56:29', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:29', '2026-07-08 09:56:29', '', 12, 'https://mrarif.me/everwell/?p=815', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(816, 1, '2026-07-08 09:56:29', '2026-07-08 09:56:29', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:29', '2026-07-08 09:56:29', '', 12, 'https://mrarif.me/everwell/?p=816', 0, 'revision', '', 0),
(817, 1, '2026-07-08 09:56:29', '2026-07-08 09:56:29', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:29', '2026-07-08 09:56:29', '', 12, 'https://mrarif.me/everwell/?p=817', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(818, 1, '2026-07-08 09:56:46', '2026-07-08 09:56:46', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:46', '2026-07-08 09:56:46', '', 12, 'https://mrarif.me/everwell/?p=818', 0, 'revision', '', 0),
(819, 1, '2026-07-08 09:56:46', '2026-07-08 09:56:46', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:46', '2026-07-08 09:56:46', '', 12, 'https://mrarif.me/everwell/?p=819', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(820, 1, '2026-07-08 09:56:46', '2026-07-08 09:56:46', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:46', '2026-07-08 09:56:46', '', 12, 'https://mrarif.me/everwell/?p=820', 0, 'revision', '', 0),
(821, 1, '2026-07-08 09:56:54', '2026-07-08 09:56:54', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:54', '2026-07-08 09:56:54', '', 12, 'https://mrarif.me/everwell/?p=821', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(822, 1, '2026-07-08 09:56:54', '2026-07-08 09:56:54', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				<p>Compassionate, personalized care supporting lifelong health, wellness, and vitality.</p>								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:54', '2026-07-08 09:56:54', '', 12, 'https://mrarif.me/everwell/?p=822', 0, 'revision', '', 0),
(823, 1, '2026-07-08 09:56:55', '2026-07-08 09:56:55', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:56:55', '2026-07-08 09:56:55', '', 12, 'https://mrarif.me/everwell/?p=823', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(824, 1, '2026-07-08 09:57:30', '2026-07-08 09:57:30', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:57:30', '2026-07-08 09:57:30', '', 12, 'https://mrarif.me/everwell/?p=824', 0, 'revision', '', 0),
(825, 1, '2026-07-08 09:57:30', '2026-07-08 09:57:30', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:57:30', '2026-07-08 09:57:30', '', 12, 'https://mrarif.me/everwell/?p=825', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(826, 1, '2026-07-08 09:57:30', '2026-07-08 09:57:30', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:57:30', '2026-07-08 09:57:30', '', 12, 'https://mrarif.me/everwell/?p=826', 0, 'revision', '', 0),
(827, 1, '2026-07-08 09:59:47', '2026-07-08 09:59:47', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:59:47', '2026-07-08 09:59:47', '', 12, 'https://mrarif.me/everwell/?p=827', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(828, 1, '2026-07-08 09:59:47', '2026-07-08 09:59:47', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:59:47', '2026-07-08 09:59:47', '', 12, 'https://mrarif.me/everwell/?p=828', 0, 'revision', '', 0),
(829, 1, '2026-07-08 09:59:47', '2026-07-08 09:59:47', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 09:59:47', '2026-07-08 09:59:47', '', 12, 'https://mrarif.me/everwell/?p=829', 0, 'revision', '', 0),
(830, 1, '2026-07-08 10:05:24', '2026-07-08 10:05:24', '', 'whole-person a', '', 'inherit', 'closed', 'closed', '', 'whole-person-a', '', '', '2026-07-08 10:05:24', '2026-07-08 10:05:24', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(831, 1, '2026-07-08 10:05:30', '2026-07-08 10:05:30', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:05:30', '2026-07-08 10:05:30', '', 12, 'https://mrarif.me/everwell/?p=831', 0, 'revision', '', 0),
(832, 1, '2026-07-08 10:05:30', '2026-07-08 10:05:30', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:05:30', '2026-07-08 10:05:30', '', 12, 'https://mrarif.me/everwell/?p=832', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(833, 1, '2026-07-08 10:05:31', '2026-07-08 10:05:31', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:05:31', '2026-07-08 10:05:31', '', 12, 'https://mrarif.me/everwell/?p=833', 0, 'revision', '', 0),
(834, 1, '2026-07-08 10:06:02', '2026-07-08 10:06:02', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:06:02', '2026-07-08 10:06:02', '', 12, 'https://mrarif.me/everwell/?p=834', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(835, 1, '2026-07-08 10:06:02', '2026-07-08 10:06:02', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:06:02', '2026-07-08 10:06:02', '', 12, 'https://mrarif.me/everwell/?p=835', 0, 'revision', '', 0),
(836, 1, '2026-07-08 10:06:02', '2026-07-08 10:06:02', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:06:02', '2026-07-08 10:06:02', '', 12, 'https://mrarif.me/everwell/?p=836', 0, 'revision', '', 0),
(840, 1, '2026-07-08 10:10:41', '2026-07-08 10:10:41', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 10:10:41', '2026-07-08 10:10:41', '', 14, 'https://mrarif.me/everwell/?p=840', 0, 'revision', '', 0),
(838, 1, '2026-07-08 10:10:41', '2026-07-08 10:10:41', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 10:10:41', '2026-07-08 10:10:41', '', 14, 'https://mrarif.me/everwell/?p=838', 0, 'revision', '', 0),
(839, 1, '2026-07-08 10:10:41', '2026-07-08 10:10:41', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1165\" height=\"1350\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/about-top-new.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Caucasian-perso-a.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 10:10:41', '2026-07-08 10:10:41', '', 14, 'https://mrarif.me/everwell/?p=839', 0, 'revision', '', 0),
(841, 1, '2026-07-08 10:41:35', '2026-07-08 10:41:35', '', 'EVERWELL a', '', 'inherit', 'closed', 'closed', '', 'everwell-a', '', '', '2026-07-08 10:41:35', '2026-07-08 10:41:35', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(842, 1, '2026-07-08 10:43:04', '2026-07-08 10:43:04', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:43:04', '2026-07-08 10:43:04', '', 12, 'https://mrarif.me/everwell/?p=842', 0, 'revision', '', 0),
(843, 1, '2026-07-08 10:43:04', '2026-07-08 10:43:04', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 10:43:04', '2026-07-08 10:43:04', '', 12, 'https://mrarif.me/everwell/?p=843', 0, 'revision', '', 0),
(845, 1, '2026-07-08 10:45:28', '2026-07-08 10:45:28', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 10:45:28', '2026-07-08 10:45:28', '', 14, 'https://mrarif.me/everwell/?p=845', 0, 'revision', '', 0),
(846, 1, '2026-07-08 10:45:28', '2026-07-08 10:45:28', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-ab.jpg\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 10:45:28', '2026-07-08 10:45:28', '', 14, 'https://mrarif.me/everwell/?p=846', 0, 'revision', '', 0),
(847, 1, '2026-07-08 10:45:28', '2026-07-08 10:45:28', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 10:45:28', '2026-07-08 10:45:28', '', 14, 'https://mrarif.me/everwell/?p=847', 0, 'revision', '', 0),
(849, 1, '2026-07-08 11:05:33', '2026-07-08 11:05:33', '<h6>About Us</h6>							\n				EVERWELL LONGEVITY & WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Areas We Serve</h6>							\n									<ul>\n							<li>\n										Serving the Shreveport-Bossier, LA and Homer, LA area\n									</li>\n						</ul>\n							Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '377-revision-v1', '', '', '2026-07-08 11:05:33', '2026-07-08 11:05:33', '', 377, 'https://mrarif.me/everwell/?p=849', 0, 'revision', '', 0),
(850, 1, '2026-07-08 11:17:39', '2026-07-08 11:17:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 11:17:39', '2026-07-08 11:17:39', '', 22, 'https://mrarif.me/everwell/?p=850', 0, 'revision', '', 0),
(851, 1, '2026-07-08 11:17:39', '2026-07-08 11:17:39', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 11:17:39', '2026-07-08 11:17:39', '', 22, 'https://mrarif.me/everwell/?p=851', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(852, 1, '2026-07-08 11:17:40', '2026-07-08 11:17:40', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $99</h5>										<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 11:17:40', '2026-07-08 11:17:40', '', 22, 'https://mrarif.me/everwell/?p=852', 0, 'revision', '', 0),
(911, 1, '2026-07-08 20:30:26', '2026-07-08 20:30:26', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 20:30:26', '2026-07-08 20:30:26', '', 12, 'https://mrarif.me/everwell/?p=911', 0, 'revision', '', 0),
(856, 1, '2026-07-08 11:30:07', '2026-07-08 11:30:07', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:30:07', '2026-07-08 11:30:07', '', 12, 'https://mrarif.me/everwell/?p=856', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(854, 1, '2026-07-08 11:30:06', '2026-07-08 11:30:06', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:30:06', '2026-07-08 11:30:06', '', 12, 'https://mrarif.me/everwell/?p=854', 0, 'revision', '', 0),
(855, 1, '2026-07-08 11:30:06', '2026-07-08 11:30:06', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:30:06', '2026-07-08 11:30:06', '', 12, 'https://mrarif.me/everwell/?p=855', 0, 'revision', '', 0),
(857, 1, '2026-07-08 11:36:39', '2026-07-08 11:36:39', '', 'Our Mission young ab', '', 'inherit', 'closed', 'closed', '', 'our-mission-young-ab', '', '', '2026-07-08 11:36:39', '2026-07-08 11:36:39', '', 14, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg', 0, 'attachment', 'image/jpeg', 0),
(858, 1, '2026-07-08 11:38:06', '2026-07-08 11:38:06', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 11:38:06', '2026-07-08 11:38:06', '', 14, 'https://mrarif.me/everwell/?p=858', 0, 'revision', '', 0),
(859, 1, '2026-07-08 11:38:06', '2026-07-08 11:38:06', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-av.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 11:38:06', '2026-07-08 11:38:06', '', 14, 'https://mrarif.me/everwell/?p=859', 0, 'revision', '', 0),
(860, 1, '2026-07-08 11:38:07', '2026-07-08 11:38:07', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 11:38:07', '2026-07-08 11:38:07', '', 14, 'https://mrarif.me/everwell/?p=860', 0, 'revision', '', 0),
(861, 1, '2026-07-08 11:44:11', '2026-07-08 11:44:11', '', 'mental health a', '', 'inherit', 'closed', 'closed', '', 'mental-health-a', '', '', '2026-07-08 11:44:11', '2026-07-08 11:44:11', '', 12, 'https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(862, 1, '2026-07-08 11:44:19', '2026-07-08 11:44:19', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:44:19', '2026-07-08 11:44:19', '', 12, 'https://mrarif.me/everwell/?p=862', 0, 'revision', '', 0),
(863, 1, '2026-07-08 11:44:19', '2026-07-08 11:44:19', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:44:19', '2026-07-08 11:44:19', '', 12, 'https://mrarif.me/everwell/?p=863', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(864, 1, '2026-07-08 11:44:20', '2026-07-08 11:44:20', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:44:20', '2026-07-08 11:44:20', '', 12, 'https://mrarif.me/everwell/?p=864', 0, 'revision', '', 0),
(865, 1, '2026-07-08 11:45:03', '2026-07-08 11:45:03', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-08 11:45:03', '2026-07-08 11:45:03', '', 16, 'https://mrarif.me/everwell/?p=865', 0, 'revision', '', 0),
(866, 1, '2026-07-08 11:45:03', '2026-07-08 11:45:03', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-08 11:45:03', '2026-07-08 11:45:03', '', 16, 'https://mrarif.me/everwell/?p=866', 0, 'revision', '', 0),
(867, 1, '2026-07-08 11:45:03', '2026-07-08 11:45:03', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-08 11:45:03', '2026-07-08 11:45:03', '', 16, 'https://mrarif.me/everwell/?p=867', 0, 'revision', '', 0),
(868, 1, '2026-07-08 11:45:47', '2026-07-08 11:45:47', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 11:45:47', '2026-07-08 11:45:47', '', 18, 'https://mrarif.me/everwell/?p=868', 0, 'revision', '', 0),
(869, 1, '2026-07-08 11:45:47', '2026-07-08 11:45:47', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-healt-a.jpg\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 11:45:47', '2026-07-08 11:45:47', '', 18, 'https://mrarif.me/everwell/?p=869', 0, 'revision', '', 0),
(870, 1, '2026-07-08 11:45:47', '2026-07-08 11:45:47', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 11:45:47', '2026-07-08 11:45:47', '', 18, 'https://mrarif.me/everwell/?p=870', 0, 'revision', '', 0),
(871, 1, '2026-07-08 11:49:55', '2026-07-08 11:49:55', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 11:49:55', '2026-07-08 11:49:55', '', 18, 'https://mrarif.me/everwell/?p=871', 0, 'revision', '', 0),
(872, 1, '2026-07-08 11:49:55', '2026-07-08 11:49:55', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>			<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 11:49:55', '2026-07-08 11:49:55', '', 18, 'https://mrarif.me/everwell/?p=872', 0, 'revision', '', 0),
(873, 1, '2026-07-08 11:49:55', '2026-07-08 11:49:55', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>								<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>\n									<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 11:49:55', '2026-07-08 11:49:55', '', 18, 'https://mrarif.me/everwell/?p=873', 0, 'revision', '', 0),
(874, 1, '2026-07-08 11:51:45', '2026-07-08 11:51:45', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-08 11:51:45', '2026-07-08 11:51:45', '', 20, 'https://mrarif.me/everwell/?p=874', 0, 'revision', '', 0),
(875, 1, '2026-07-08 11:51:45', '2026-07-08 11:51:45', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-08 11:51:45', '2026-07-08 11:51:45', '', 20, 'https://mrarif.me/everwell/?p=875', 0, 'revision', '', 0),
(876, 1, '2026-07-08 11:51:45', '2026-07-08 11:51:45', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>								<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-08 11:51:45', '2026-07-08 11:51:45', '', 20, 'https://mrarif.me/everwell/?p=876', 0, 'revision', '', 0),
(877, 1, '2026-07-08 11:54:43', '2026-07-08 11:54:43', '<ul>\n							<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Schedule an Appointment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-08 11:54:43', '2026-07-08 11:54:43', '', 66, 'https://mrarif.me/everwell/?p=877', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(878, 1, '2026-07-08 11:57:05', '2026-07-08 11:57:05', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:57:05', '2026-07-08 11:57:05', '', 12, 'https://mrarif.me/everwell/?p=878', 0, 'revision', '', 0),
(879, 1, '2026-07-08 11:57:05', '2026-07-08 11:57:05', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_consultation\">\n									Schedule a Consultation\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:57:05', '2026-07-08 11:57:05', '', 12, 'https://mrarif.me/everwell/?p=879', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(880, 1, '2026-07-08 11:57:05', '2026-07-08 11:57:05', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:57:05', '2026-07-08 11:57:05', '', 12, 'https://mrarif.me/everwell/?p=880', 0, 'revision', '', 0),
(881, 1, '2026-07-08 11:58:08', '2026-07-08 11:58:08', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:58:08', '2026-07-08 11:58:08', '', 12, 'https://mrarif.me/everwell/?p=881', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(882, 1, '2026-07-08 11:58:08', '2026-07-08 11:58:08', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule a Consultation</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:58:08', '2026-07-08 11:58:08', '', 12, 'https://mrarif.me/everwell/?p=882', 0, 'revision', '', 0),
(883, 1, '2026-07-08 11:58:08', '2026-07-08 11:58:08', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:58:08', '2026-07-08 11:58:08', '', 12, 'https://mrarif.me/everwell/?p=883', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(884, 1, '2026-07-08 11:58:22', '2026-07-08 11:58:22', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:58:22', '2026-07-08 11:58:22', '', 12, 'https://mrarif.me/everwell/?p=884', 0, 'revision', '', 0),
(885, 1, '2026-07-08 11:58:22', '2026-07-08 11:58:22', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:58:22', '2026-07-08 11:58:22', '', 12, 'https://mrarif.me/everwell/?p=885', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(886, 1, '2026-07-08 11:58:22', '2026-07-08 11:58:22', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 11:58:22', '2026-07-08 11:58:22', '', 12, 'https://mrarif.me/everwell/?p=886', 0, 'revision', '', 0),
(887, 1, '2026-07-08 12:00:43', '2026-07-08 12:00:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>								<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>\n									<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 12:00:43', '2026-07-08 12:00:43', '', 18, 'https://mrarif.me/everwell/?p=887', 0, 'revision', '', 0),
(888, 1, '2026-07-08 12:00:43', '2026-07-08 12:00:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>								<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>\n									<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 12:00:43', '2026-07-08 12:00:43', '', 18, 'https://mrarif.me/everwell/?p=888', 0, 'revision', '', 0),
(889, 1, '2026-07-08 12:00:43', '2026-07-08 12:00:43', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" />																<h2>Women’s Mental Wellness</h2>		<p>Supporting women through every stage of life.</p><p>Compassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p><ul style=\"margin-left: 18px;\"><li>Anxiety</li><li>Depression</li><li>PMDD (Premenstrual Dysphoric Disorder)</li><li>ADHD</li><li>Burnout</li><li>Stress Management</li><li>Sleep Optimization</li><li>STD Testing</li></ul><p>Personalized care to help you restore balance, build resilience, and thrive.</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>\n									<h2>\nGenetic Testing</h2>		<p>At <strong>EVERWELL LONGEVITY &amp; WELLNESS</strong>, we utilize <strong>GeneSight® Genetic Testing</strong> to help personalize psychiatric medication selection based on your unique genetic profile. This advanced testing enhances our ability to anticipate how your body may respond to certain medications, helping reduce the trial-and-error process often associated with finding effective treatment.</p><p>GeneSight® testing may be beneficial for individuals being treated for <strong>depression, anxiety, ADHD, PTSD, and other mental health conditions</strong>. While the test does not diagnose a condition or determine the single \"best\" medication, it provides valuable insights that help your provider make more informed treatment decisions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Genetic-Testing-a.jpg\" alt=\"\" />													<p>The testing process is quick, simple, and non-invasive. A painless cheek swab is collected during your visit and sent to a certified laboratory for analysis. Your personalized results are typically available within <strong>1–2 weeks</strong>.</p><p>Once your results are received, your provider will review your GeneSight® report alongside your symptoms, medical history, and treatment goals. The report helps identify medications that may be more compatible with your genetic profile, medications that may require dose adjustments, and those that may carry a higher risk of side effects—allowing for a more personalized approach to your mental health care.</p><ul style=\"margin-left: 18px;\"><li data-section-id=\"103s055\" data-start=\"1517\" data-end=\"1552\">Personalized medication selection</li><li data-section-id=\"1me4qal\" data-start=\"1553\" data-end=\"1578\">Reduced trial-and-error</li><li data-section-id=\"hpqz3z\" data-start=\"1579\" data-end=\"1633\">Conditions treated (depression, anxiety, ADHD, etc.)</li><li data-section-id=\"1tq65my\" data-start=\"1634\" data-end=\"1661\">Simple cheek swab process</li><li data-section-id=\"f54urs\" data-start=\"1662\" data-end=\"1688\">Results within 1–2 weeks</li><li data-section-id=\"zwzw0c\" data-start=\"1689\" data-end=\"1749\" data-is-last-node=\"\">How providers use the results to guide treatment decisions</li></ul>', 'Women’s Mental Wellness', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-07-08 12:00:43', '2026-07-08 12:00:43', '', 18, 'https://mrarif.me/everwell/?p=889', 0, 'revision', '', 0),
(890, 1, '2026-07-08 12:03:02', '2026-07-08 12:03:02', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>								<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-08 12:03:02', '2026-07-08 12:03:02', '', 20, 'https://mrarif.me/everwell/?p=890', 0, 'revision', '', 0),
(891, 1, '2026-07-08 12:03:02', '2026-07-08 12:03:02', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>								<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-08 12:03:02', '2026-07-08 12:03:02', '', 20, 'https://mrarif.me/everwell/?p=891', 0, 'revision', '', 0),
(892, 1, '2026-07-08 12:03:02', '2026-07-08 12:03:02', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" />																<h2>Longevity + Regenerative Aesthetics</h2>		<p>Where beauty meets wellness.</p><p>Personalized treatments designed to enhance your appearance, support healthy aging, and promote long-term vitality.</p><ul style=\"margin-left: 18px;\"><li>Botox®</li><li>Microneedling</li><li>Platelet-Rich Plasma (PRP)</li><li>Hair Restoration</li><li>Skin Rejuvenation</li><li>Recovery-Focused Wellness Protocols</li></ul><p>Helping you look refreshed, feel revitalized, and age with confidence.</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Longevity + Regenerative Aesthetics', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-07-08 12:03:02', '2026-07-08 12:03:02', '', 20, 'https://mrarif.me/everwell/?p=892', 0, 'revision', '', 0),
(893, 1, '2026-07-08 12:03:30', '2026-07-08 12:03:30', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $99</h5>										<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 12:03:30', '2026-07-08 12:03:30', '', 22, 'https://mrarif.me/everwell/?p=893', 0, 'revision', '', 0),
(894, 1, '2026-07-08 12:03:31', '2026-07-08 12:03:31', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $99</h5>										<a href=\"https://mrarif.me/everwell/#schedule_consultation\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 12:03:31', '2026-07-08 12:03:31', '', 22, 'https://mrarif.me/everwell/?p=894', 0, 'revision', '', 0),
(895, 1, '2026-07-08 12:03:31', '2026-07-08 12:03:31', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $99</h5>										<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 12:03:31', '2026-07-08 12:03:31', '', 22, 'https://mrarif.me/everwell/?p=895', 0, 'revision', '', 0),
(896, 1, '2026-07-08 12:04:00', '2026-07-08 12:04:00', '<img width=\"1200\" height=\"896\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-08 12:04:00', '2026-07-08 12:04:00', '', 24, 'https://mrarif.me/everwell/?p=896', 0, 'revision', '', 0),
(897, 1, '2026-07-08 12:04:01', '2026-07-08 12:04:01', '<img width=\"1200\" height=\"896\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-08 12:04:01', '2026-07-08 12:04:01', '', 24, 'https://mrarif.me/everwell/?p=897', 0, 'revision', '', 0),
(898, 1, '2026-07-08 12:04:01', '2026-07-08 12:04:01', '<img width=\"1200\" height=\"896\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" />																<h2>Urgent Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Urgent Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-08 12:04:01', '2026-07-08 12:04:01', '', 24, 'https://mrarif.me/everwell/?p=898', 0, 'revision', '', 0),
(899, 1, '2026-07-08 12:04:44', '2026-07-08 12:04:44', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-08 12:04:44', '2026-07-08 12:04:44', '', 26, 'https://mrarif.me/everwell/?p=899', 0, 'revision', '', 0),
(900, 1, '2026-07-08 12:04:44', '2026-07-08 12:04:44', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-08 12:04:44', '2026-07-08 12:04:44', '', 26, 'https://mrarif.me/everwell/?p=900', 0, 'revision', '', 0),
(901, 1, '2026-07-08 12:04:44', '2026-07-08 12:04:44', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" />																<h2>Contraceptive Management &amp; Counseling</h2>		<p>Personalized birth control care tailored to your health, lifestyle, and goals.</p><p>We provide evidence-based counseling to help you choose the contraceptive method that’s right for you.</p><ul style=\"margin-left: 18px;\"><li>Birth Control Consultations</li><li>Oral Contraceptives</li><li>IUD Counseling &amp; Management</li><li>Nexplanon® Insertion &amp; Removal</li><li>Depo-Provera® Injections</li><li>Contraceptive Patch &amp; Vaginal Ring</li></ul><p>Empowering you to make informed decisions with confidence and compassionate care.</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Contraceptive Management & Counseling', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-07-08 12:04:44', '2026-07-08 12:04:44', '', 26, 'https://mrarif.me/everwell/?p=901', 0, 'revision', '', 0),
(902, 1, '2026-07-08 13:47:07', '2026-07-08 13:47:07', '<ul>\n							<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n						</ul>\n																	<img width=\"605\" height=\"472\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Everwell-Longevity-Wellness-logo.png\" alt=\"\" />																					<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Schedule an Appointment\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '66-revision-v1', '', '', '2026-07-08 13:47:07', '2026-07-08 13:47:07', '', 66, 'https://mrarif.me/everwell/?p=902', 0, 'revision', '', 0),
(903, 1, '2026-07-08 20:28:46', '2026-07-08 20:28:46', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-08 20:28:46', '2026-07-08 20:28:46', '', 36, 'https://mrarif.me/everwell/?p=903', 0, 'revision', '', 0),
(904, 1, '2026-07-08 20:28:46', '2026-07-08 20:28:46', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=32.812016,-93.069735&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=300%20Murrell%20Street%20Homer%2C%20LA%2071040\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										300 Murrell Street Homer, LA 71040\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:3185064245\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 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										(318) 506-4245\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:8556310063\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										855-631-0063\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:Info@everwelllw.org\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										Info@everwelllw.org\n											</a>\n									</li>\n						</ul>\n							<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '36-revision-v1', '', '', '2026-07-08 20:28:46', '2026-07-08 20:28:46', '', 36, 'https://mrarif.me/everwell/?p=904', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(906, 1, '2026-07-08 20:29:04', '2026-07-08 20:29:04', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 20:29:04', '2026-07-08 20:29:04', '', 14, 'https://mrarif.me/everwell/?p=906', 0, 'revision', '', 0),
(907, 1, '2026-07-08 20:29:04', '2026-07-08 20:29:04', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 20:29:04', '2026-07-08 20:29:04', '', 14, 'https://mrarif.me/everwell/?p=907', 0, 'revision', '', 0),
(909, 1, '2026-07-08 20:30:25', '2026-07-08 20:30:25', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 20:30:25', '2026-07-08 20:30:25', '', 12, 'https://mrarif.me/everwell/?p=909', 0, 'revision', '', 0),
(910, 1, '2026-07-08 20:30:25', '2026-07-08 20:30:25', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"311\" height=\"305\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/back-img-12.png\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 20:30:25', '2026-07-08 20:30:25', '', 12, 'https://mrarif.me/everwell/?p=910', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(912, 1, '2026-07-08 20:41:40', '2026-07-08 20:41:40', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 20:41:40', '2026-07-08 20:41:40', '', 12, 'https://mrarif.me/everwell/?p=912', 0, 'revision', '', 0),
(913, 1, '2026-07-08 20:41:40', '2026-07-08 20:41:40', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 20:41:40', '2026-07-08 20:41:40', '', 12, 'https://mrarif.me/everwell/?p=913', 0, 'revision', '', 0);
INSERT INTO `wpe_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(914, 1, '2026-07-08 20:41:40', '2026-07-08 20:41:40', '<img width=\"1165\" height=\"1300\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Live-Well.-Age-Well-left.webp\" alt=\"\" />																		\n				Welcome 				\n							<h1>Live Well. Age Well.</h1>							<ul>\n							<li>\n										Wellness\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Mind \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Metabolism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 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.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z\"></path></svg>						\n										Longevity\n									</li>\n						</ul>\n				Compassionate, personalized care supporting lifelong health, wellness, and vitality.								<a href=\"#schedule_appointment\">\n									Schedule an Appointment\n					</a>\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why are you exhausted?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why is your weight changing?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why has your mood changed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">		Why aren’t you sleeping?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/weight-optimization/\">		Why has your metabolism slowed?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">		Why don&#039;t you feel like yourself anymore?\n		</a>		\n			<svg aria-hidden=\"true\" viewBox=\"0 0 480 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M471.99 334.43L336.06 256l135.93-78.43c7.66-4.42 10.28-14.2 5.86-21.86l-32.02-55.43c-4.42-7.65-14.21-10.28-21.87-5.86l-135.93 78.43V16c0-8.84-7.17-16-16.01-16h-64.04c-8.84 0-16.01 7.16-16.01 16v156.86L56.04 94.43c-7.66-4.42-17.45-1.79-21.87 5.86L2.15 155.71c-4.42 7.65-1.8 17.44 5.86 21.86L143.94 256 8.01 334.43c-7.66 4.42-10.28 14.21-5.86 21.86l32.02 55.43c4.42 7.65 14.21 10.27 21.87 5.86l135.93-78.43V496c0 8.84 7.17 16 16.01 16h64.04c8.84 0 16.01-7.16 16.01-16V339.14l135.93 78.43c7.66 4.42 17.45 1.8 21.87-5.86l32.02-55.43c4.42-7.65 1.8-17.43-5.86-21.85z\"></path></svg>		\n					<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness.</p>													<img width=\"667\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/primary-care.jpg\" alt=\"\" />																		\n									<h5>\n							Our Mission						\n					</h5>\n									<p>\n						At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, 					</p>\n												<a href=\"https://mrarif.me/everwell/about-us/\">\n									Learn More\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																<h2>Your Journey to Better Health Begins Today</h2>		Ready to start your wellness journey? Contact our compassionate team today for personalized care, expert guidance, and lasting health solutions.								<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n									<h2>Our Services</h2>					<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Womens-Mental-Wellness-home.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Botox-a.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Medical-Weight-Management-a.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n														<a href=\"https://mrarif.me/everwell/our-service/\">\n									View All Service\n					</a>\n									<h3>Schedule an Appointment</h3>					<h2>Flexible Payment Options</h2>		Quality healthcare should be accessible to everyone. We offer affordable payment options to help you receive the care you need.					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"512\" viewBox=\"0 0 64 64\" width=\"512\"><g id=\"Outline\"><g id=\"Outline-2\" data-name=\"Outline\"><path d=\"m7 62h40.129a1.952 1.952 0 0 0 .763-.154c13.633-5.776 14.522-16.533 14-24.123a1.925 1.925 0 0 0 -2.392-1.754 10.926 10.926 0 0 1 -7.5-1.235v-24.734h5a3.015 3.015 0 0 0 3-3 5.059 5.059 0 0 0 -5-5c-10.75-.024-43 0-43 0a5.006 5.006 0 0 0 -5 5v47h-2a3 3 0 0 0 -3 3 5.006 5.006 0 0 0 5 5zm45-55a3 3 0 0 1 6 0 1 1 0 0 1 -1 1h-5zm7.906 30.928c.505 7.557-.513 16.872-12.76 22.072-12.319-5.219-13.3-14.58-12.842-22.085 5.853 1.346 10.948-2.489 12.781-4.2 1.9 1.711 6.949 5.531 12.821 4.213zm-50.906-30.928a3 3 0 0 1 3-3h39a4.973 4.973 0 0 0 -1 3v26.495a18.7 18.7 0 0 1 -1.58-1.263 1.934 1.934 0 0 0 -2.581 0c-1.687 1.5-6.142 4.876-11.088 3.742a1.953 1.953 0 0 0 -2.389 1.746c-.33 4.84-.082 10.973 3.678 16.28h-27.04zm-4 49h32.664a22.634 22.634 0 0 0 5.036 4h-35.7a3 3 0 0 1 -3-3 1 1 0 0 1 1-1z\"></path><path d=\"m31 26a10 10 0 1 0 -10-10 10.011 10.011 0 0 0 10 10zm0-18a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z\"></path><path d=\"m27 19h1v1a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-1h1a2 2 0 0 0 2-2v-2a2 2 0 0 0 -2-2h-1v-1a2 2 0 0 0 -2-2h-2a2 2 0 0 0 -2 2v1h-1a2 2 0 0 0 -2 2v2a2 2 0 0 0 2 2zm0-4h2a1 1 0 0 0 1-1v-2h2v2a1 1 0 0 0 1 1h2v2h-2a1 1 0 0 0 -1 1v2h-2v-2a1 1 0 0 0 -1-1h-2z\"></path><path d=\"m13 31h29a1 1 0 0 0 0-2h-29a1 1 0 0 0 0 2z\"></path><path d=\"m13 37h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><path d=\"m13 43h16a1 1 0 0 0 0-2h-16a1 1 0 0 0 0 2z\"></path><circle cx=\"30\" cy=\"50\" r=\"1\"></circle><path d=\"m21.884 48.712c-.809.661-1.336.61-1.754-.288-.836-1.794-2.317-1.594-4.455-.277a20.421 20.421 0 0 1 -2 1.193 3.935 3.935 0 0 1 .212-2.062 1 1 0 0 0 -1.922-.556c-.606 1.727-.591 4.5 1.6 4.6 1.293.062 3.622-2.023 4.67-2.216a2.941 2.941 0 0 0 4.873 1.183c.685-.53.942-.727 2.216.443a1 1 0 0 0 1.354-1.474c-2.321-2.125-3.715-1.427-4.794-.546z\"></path><path d=\"m54.922 42.044a3.035 3.035 0 0 0 -4.269-.116l-4.745 4.5-1.273-1.273a3.09 3.09 0 0 0 -4.269 0 3.021 3.021 0 0 0 0 4.268l3.35 3.352a3 3 0 0 0 4.212.057l6.879-6.518a3.033 3.033 0 0 0 .115-4.27zm-1.491 2.815-6.878 6.518a1.015 1.015 0 0 1 -1.422-.019l-3.351-3.352a1.019 1.019 0 0 1 1.441-1.44l1.961 1.961a1 1 0 0 0 1.395.019l5.452-5.166a1.019 1.019 0 1 1 1.4 1.479z\"></path></g></g></svg>				\n									<h5>\n							Insurance Accepted Soon						\n					</h5>\n									<p>\n						We are currently expanding our insurance partnerships and will be accepting insurance plans soon. Please contact our office for the latest updates.					</p>\n												<a href=\"https://mrarif.me/everwell/contact-us/\">\n									Contact Us\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" data-name=\"Layer 1\" id=\"Layer_1\" viewBox=\"0 0 128 128\"><title></title><path d=\"M92.88,9.23A2,2,0,0,0,92.14,12l10.31,18L92.14,48a2,2,0,1,0,3.47,2l10.87-19a2,2,0,0,0,0-2L95.61,10A2,2,0,0,0,92.88,9.23Z\"></path><path d=\"M114.49,29,103.61,10a2,2,0,1,0-3.47,2l10.31,18L100.14,48a2,2,0,1,0,3.47,2l10.88-19A2,2,0,0,0,114.49,29Z\"></path><path d=\"M33.75,51a2,2,0,0,0,1.73-3L25.18,30,35.49,12A2,2,0,0,0,32,10L21.14,29a2,2,0,0,0,0,2L32,50A2,2,0,0,0,33.75,51Z\"></path><path d=\"M27.49,12A2,2,0,0,0,24,10L13.14,29a2,2,0,0,0,0,2L24,50a2,2,0,1,0,3.47-2L17.18,30Z\"></path><path d=\"M64.14,39.35a8.93,8.93,0,0,1-6.39-3A2.28,2.28,0,0,0,56,35.53a2.09,2.09,0,0,0-1.75,3.19,9.5,9.5,0,0,0,3.47,3.14A12.14,12.14,0,0,1,64.16,40h.28a12.56,12.56,0,0,1,6.31,1.88,6.82,6.82,0,0,0,3.17-6.12C73.91,26,59.7,28.41,59.7,23.3c0-1.56,1.21-3.08,4.44-3.08a8,8,0,0,1,5.45,2.06,2.58,2.58,0,0,0,1.67.86,2.09,2.09,0,0,0,2.1-2.06A2.25,2.25,0,0,0,73,19.84c-1.32-1.87-3.89-3.12-7-3.5V14.08a1.81,1.81,0,1,0-3.62,0V16.3c-5,.54-7.17,3.54-7.17,7,0,9.38,14.21,6.78,14.21,12.46C69.4,38.18,67.68,39.35,64.14,39.35Z\"></path><path d=\"M80,0H48a2,2,0,0,0-1.74,1l-16,28a2,2,0,0,0,0,2l16,28A2,2,0,0,0,48,60h3.59V56H49.16L34.3,30,49.16,4H78.84L93.7,30,78.84,56H76.69v4H80a2,2,0,0,0,1.74-1l16-28a2,2,0,0,0,0-2l-16-28A2,2,0,0,0,80,0Z\"></path><path d=\"M49.31,107.23a63.13,63.13,0,0,1,5,7c.9,1.4,2,3.12,3.5,5.38A18.64,18.64,0,0,0,73.37,128H94.19a15.59,15.59,0,0,0,15.63-15.47L112,74.83s0-.08,0-.12a7.62,7.62,0,0,0-7.63-7.59h-1.83a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H89.43a7.63,7.63,0,0,0-5.63,2.47,7.63,7.63,0,0,0-5.63-2.47H76.33a7.61,7.61,0,0,0-3.63.92V52.5a8.38,8.38,0,0,0-2.51-6A8.49,8.49,0,0,0,64.36,44a8.34,8.34,0,0,0-6.07,2.43,8.92,8.92,0,0,0-2.7,6.35v34L42.5,76.46a8.57,8.57,0,0,0-12,.08,8.45,8.45,0,0,0,0,12.08C30.71,88.75,45.21,102.24,49.31,107.23Zm-16-27.85a4.57,4.57,0,0,1,6.44,0l.17.15,15.4,12.12a1.94,1.94,0,0,0,.17.23l.54.54a2,2,0,0,0,1.41.59l.26,0a2,2,0,0,0,.64-.14A2,2,0,0,0,59.59,91V52.78a4.91,4.91,0,0,1,1.49-3.48A4.4,4.4,0,0,1,64.26,48a4.52,4.52,0,0,1,3.11,1.33,4.41,4.41,0,0,1,1.32,3.17V74.6s0,0,0,.07v13a2,2,0,1,0,4,0V74.78s0,0,0-.07a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.57v9.94a2,2,0,0,0,4,0V74.71a3.62,3.62,0,0,1,3.63-3.59h1.83a3.62,3.62,0,0,1,3.63,3.59h0v6.11a2,2,0,0,0,4,0V74.7a3.62,3.62,0,0,1,3.63-3.58h1.83A3.62,3.62,0,0,1,108,74.66l-2.18,37.7s0,.08,0,.12A11.59,11.59,0,0,1,94.19,124H73.37a14.64,14.64,0,0,1-12.25-6.56c-1.48-2.24-2.58-3.95-3.48-5.34a66.82,66.82,0,0,0-5.24-7.42c-4.27-5.19-18.51-18.44-19.07-19a4.45,4.45,0,0,1,0-6.35Z\"></path><path d=\"M76,108H90a2,2,0,0,0,0-4H76a2,2,0,0,0,0,4Z\"></path><path d=\"M72,116H94a2,2,0,0,0,0-4H72a2,2,0,0,0,0,4Z\"></path></svg>				\n									<h5>\n							Self-Pay Pricing						\n					</h5>\n									<p>\n						Affordable self-pay options are available for patients without insurance. Contact us for current pricing and visit information.					</p>\n												<a href=\"https://mrarif.me/everwell/our-service/\">\n									View Services\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-07-08 20:41:40', '2026-07-08 20:41:40', '', 12, 'https://mrarif.me/everwell/?p=914', 0, 'revision', '', 0),
(915, 1, '2026-07-08 20:42:01', '2026-07-08 20:42:01', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 20:42:01', '2026-07-08 20:42:01', '', 14, 'https://mrarif.me/everwell/?p=915', 0, 'revision', '', 0),
(916, 1, '2026-07-08 20:42:01', '2026-07-08 20:42:01', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EverWell, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 20:42:01', '2026-07-08 20:42:01', '', 14, 'https://mrarif.me/everwell/?p=916', 0, 'revision', '', 0),
(917, 1, '2026-07-08 20:42:02', '2026-07-08 20:42:02', '<h2>About Us</h2>		<p>EVERWELL LONGEVITY &amp; WELLNESS providers are passionate about providing whole-person, compassionate care and meeting each individual where they are on their health journey. With combined experience in Adult primary care, mental health, women’s health, and pediatrics, we provide comprehensive, evidence-based care across the lifespan.</p><p>Our approach goes beyond treating symptoms we focus on building meaningful relationships, promoting prevention, and creating personalized treatment plans that support long-term health and wellness. Whether you’re seeking preventive care, contraceptive management, weight optimization, mental wellness, or longevity treatments, our goal is to help you look your best, feel your best, and live your healthiest life.</p>													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/EVERWELL-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/whole-person-a.webp\" alt=\"\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Our-Mission-young-ab.jpg\" alt=\"\" />																<h2>Our Mission</h2>		<p>At EVERWELL, our mission is to provide compassionate, evidence-based care that empowers individuals to live healthier, longer, and more fulfilling lives. We are committed to delivering personalized, whole-person healthcare by integrating mental wellness, weight optimization, regenerative aesthetics, and preventive medicine. Through innovation, education, and meaningful patient relationships, we strive to help every patient look their best, feel their best, and thrive at every stage of life.</p>', 'About Us', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-07-08 20:42:02', '2026-07-08 20:42:02', '', 14, 'https://mrarif.me/everwell/?p=917', 0, 'revision', '', 0),
(918, 1, '2026-07-08 20:42:13', '2026-07-08 20:42:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $99</h5>										<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 20:42:13', '2026-07-08 20:42:13', '', 22, 'https://mrarif.me/everwell/?p=918', 0, 'revision', '', 0),
(919, 1, '2026-07-08 20:42:13', '2026-07-08 20:42:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $99</h5>										<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 20:42:13', '2026-07-08 20:42:13', '', 22, 'https://mrarif.me/everwell/?p=919', 0, 'revision', '', 0),
(920, 1, '2026-07-08 20:42:13', '2026-07-08 20:42:13', '<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" />																<h2>Weight Optimization</h2>		<p>Achieve sustainable results through personalized, science-based care.</p><p>Our comprehensive approach focuses on improving metabolic health, body composition, and long-term wellness—not just the number on the scale.</p><ul style=\"margin-left: 18px;\"><li>Medical Weight Management</li><li>GLP-1 Therapy (when appropriate)</li><li>Metabolic Health Optimization</li><li>Personalized Nutrition Guidance</li><li>Lifestyle &amp; Habit Coaching</li><li>Hormone Evaluation</li><li>Ongoing Accountability &amp; Support</li></ul><p>Helping you lose weight, gain confidence, and build lasting health.</p>			<h5>Schedule Your Weight Loss Consultation for $75</h5>										<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Weight Optimization', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-07-08 20:42:13', '2026-07-08 20:42:13', '', 22, 'https://mrarif.me/everwell/?p=920', 0, 'revision', '', 0),
(921, 1, '2026-07-08 21:12:19', '2026-07-08 21:12:19', '<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" width=\"1200\" height=\"896\" />\r\n<h2>Urgent Care</h2>\r\nConvenient, compassionate care when you need it most.\r\n\r\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\r\n<ul style=\"margin-left: 18px;\">\r\n 	<li>Cold, Flu &amp; COVID-19</li>\r\n 	<li>Strep Throat &amp; Ear Infections</li>\r\n 	<li>Sinus Infections</li>\r\n 	<li>Urinary Tract Infections (UTIs)</li>\r\n 	<li>STI Screening &amp; Treatment</li>\r\n 	<li>Minor Cuts, Burns</li>\r\n 	<li>Rashes &amp; Skin Conditions</li>\r\n 	<li>Allergies &amp; Asthma</li>\r\n 	<li>Nausea &amp; Vomiting</li>\r\n 	<li>School, Sports &amp; Work Physicals</li>\r\n 	<li>Rapid Testing &amp; Basic Lab Services</li>\r\n</ul>\r\nPrompt, personalized care for life’s unexpected moments\r\n\r\n<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\r\nBook Now\r\n</a>', 'Acute Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-08 21:12:19', '2026-07-08 21:12:19', '', 24, 'https://mrarif.me/everwell/?p=921', 0, 'revision', '', 0),
(922, 1, '2026-07-08 21:14:06', '2026-07-08 21:14:06', '<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" width=\"1200\" height=\"896\" />\r\n<h2>Urgent Care</h2>\r\nConvenient, compassionate care when you need it most.\r\n\r\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\r\n<ul style=\"margin-left: 18px;\">\r\n 	<li>Cold, Flu &amp; COVID-19</li>\r\n 	<li>Strep Throat &amp; Ear Infections</li>\r\n 	<li>Sinus Infections</li>\r\n 	<li>Urinary Tract Infections (UTIs)</li>\r\n 	<li>STI Screening &amp; Treatment</li>\r\n 	<li>Minor Cuts, Burns</li>\r\n 	<li>Rashes &amp; Skin Conditions</li>\r\n 	<li>Allergies &amp; Asthma</li>\r\n 	<li>Nausea &amp; Vomiting</li>\r\n 	<li>School, Sports &amp; Work Physicals</li>\r\n 	<li>Rapid Testing &amp; Basic Lab Services</li>\r\n</ul>\r\nPrompt, personalized care for life’s unexpected moments\r\n\r\n<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\r\nBook Now\r\n</a>', 'Acute Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-08 21:14:06', '2026-07-08 21:14:06', '', 24, 'https://mrarif.me/everwell/?p=922', 0, 'revision', '', 0),
(923, 1, '2026-07-08 21:14:06', '2026-07-08 21:14:06', '<img src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" width=\"1200\" height=\"896\" />\r\n<h2>Urgent Care</h2>\r\nConvenient, compassionate care when you need it most.\r\n\r\nSame-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.\r\n<ul style=\"margin-left: 18px;\">\r\n 	<li>Cold, Flu &amp; COVID-19</li>\r\n 	<li>Strep Throat &amp; Ear Infections</li>\r\n 	<li>Sinus Infections</li>\r\n 	<li>Urinary Tract Infections (UTIs)</li>\r\n 	<li>STI Screening &amp; Treatment</li>\r\n 	<li>Minor Cuts, Burns</li>\r\n 	<li>Rashes &amp; Skin Conditions</li>\r\n 	<li>Allergies &amp; Asthma</li>\r\n 	<li>Nausea &amp; Vomiting</li>\r\n 	<li>School, Sports &amp; Work Physicals</li>\r\n 	<li>Rapid Testing &amp; Basic Lab Services</li>\r\n</ul>\r\nPrompt, personalized care for life’s unexpected moments\r\n\r\n<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\r\nBook Now\r\n</a>', 'Acute Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-08 21:14:06', '2026-07-08 21:14:06', '', 24, 'https://mrarif.me/everwell/?p=923', 0, 'revision', '', 0),
(924, 1, '2026-07-08 21:14:06', '2026-07-08 21:14:06', '<img width=\"1200\" height=\"896\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/single-urgen-a.jpg\" alt=\"\" />																<h2>Acute Care</h2>		<p>Convenient, compassionate care when you need it most.</p><p>Same-day evaluation and treatment for common illnesses, minor injuries, and preventive health needs to help you feel better, faster.</p><ul style=\"margin-left: 18px;\"><li>Cold, Flu &amp; COVID-19</li><li>Strep Throat &amp; Ear Infections</li><li>Sinus Infections</li><li>Urinary Tract Infections (UTIs)</li><li>STI Screening &amp; Treatment</li><li>Minor Cuts, Burns</li><li>Rashes &amp; Skin Conditions</li><li>Allergies &amp; Asthma</li><li>Nausea &amp; Vomiting</li><li>School, Sports &amp; Work Physicals</li><li>Rapid Testing &amp; Basic Lab Services</li></ul><p>Prompt, personalized care for life’s unexpected moments</p>								<a href=\"https://mrarif.me/everwell/#schedule_appointment\">\n									Book Now\n					</a>', 'Acute Care', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-07-08 21:14:06', '2026-07-08 21:14:06', '', 24, 'https://mrarif.me/everwell/?p=924', 0, 'revision', '', 0),
(925, 1, '2026-07-08 21:14:25', '2026-07-08 21:14:25', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-08 21:14:25', '2026-07-08 21:14:25', '', 16, 'https://mrarif.me/everwell/?p=925', 0, 'revision', '', 0),
(926, 1, '2026-07-08 21:14:25', '2026-07-08 21:14:25', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Urgent Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/urgent-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-08 21:14:25', '2026-07-08 21:14:25', '', 16, 'https://mrarif.me/everwell/?p=926', 0, 'revision', '', 0),
(927, 1, '2026-07-08 21:14:25', '2026-07-08 21:14:25', '<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/mental-health-a.webp\" alt=\"\" /></figure><h5>Women’s Mental Wellness</h5><p>Supporting women through every stage of life.\nCompassionate, evidence-based care designed to help you feel your best—mentally, emotionally, and physically.</p>										<a href=\"https://mrarif.me/everwell/womens-mental-wellness/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Aesthetics-sab.jpg\" alt=\"\" /></figure><h5> Longevity + Regenerative Aesthetics</h5><p>Where beauty meets wellness. Personalized treatments designed to enhance your appearance, support healthy aging,</p>										<a href=\"https://mrarif.me/everwell/longevity-regenerative-aesthetics/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Weight-Optimization-mid.webp\" alt=\"\" /></figure><h5>Weight Optimization</h5><p>Achieve sustainable results through personalized, science-based care. Our comprehensive approach focuses on improving metabolic health, </p>										<a href=\"https://mrarif.me/everwell/weight-optimization/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/urgen-care-ab.jpg\" alt=\"\" /></figure><h5>Acute Care</h5><p>Convenient, compassionate care when you need it most. Same-day evaluation and treatment for common illnesses, </p>										<a href=\"https://mrarif.me/everwell/acute-care/\">\n									Learn More\n					</a>\n									<figure><img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/everwell/wp-content/uploads/2026/07/Personalized-birth-control-care-aa.jpg\" alt=\"\" /></figure><h5>Contraceptive Management &amp; Counseling</h5><p>Personalized birth control care tailored to your health, lifestyle, and goals.</p>										<a href=\"https://mrarif.me/everwell/contraceptive-management-counseling/\">\n									Learn More\n					</a>', 'Our Service', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-07-08 21:14:25', '2026-07-08 21:14:25', '', 16, 'https://mrarif.me/everwell/?p=927', 0, 'revision', '', 0);

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

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

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

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

--
-- Table structure for table `wpe_terms`
--

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

--
-- Dumping data for table `wpe_terms`
--

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

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

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

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

--
-- Dumping data for table `wpe_term_relationships`
--

INSERT INTO `wpe_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(35, 2, 0),
(34, 2, 0),
(33, 2, 0),
(32, 2, 0),
(31, 2, 0),
(30, 2, 0),
(29, 2, 0),
(28, 2, 0),
(38, 2, 0),
(66, 3, 0),
(67, 3, 0),
(533, 6, 0),
(360, 3, 0),
(377, 5, 0),
(459, 4, 0);

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

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

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

--
-- Dumping data for table `wpe_term_taxonomy`
--

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

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

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

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

--
-- Dumping data for table `wpe_usermeta`
--

INSERT INTO `wpe_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'web-admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'modern'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpe_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpe_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:2:{s:64:\"f4c99ed39b9bb266a721724be0f25aeebdcee3b277d3be75643a412405b1a3bb\";a:4:{s:10:\"expiration\";i:1784382244;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1783172644;}s:64:\"d7c9a1e5e13ceca779e733dc119d2467bba46e20d96623d08c4616ddbc0fa85f\";a:4:{s:10:\"expiration\";i:1784382671;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36\";s:5:\"login\";i:1783173071;}}'),
(17, 1, 'wpe_dashboard_quick_press_last_post_id', '5'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"45.120.99.0\";}'),
(19, 1, 'wpe_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"LccDguBJnjpgvn7kJjLTIuUlEc7G8imX\";s:11:\"auth_secret\";s:32:\"ga9GcZUDHosJ6HebrkI562MoPvuLFFmK\";s:12:\"access_token\";s:296:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9ldmVyd2VsbC8iLCJjbGllbnRfaWQiOiJMY2NEZ3VCSm5qcGd2bjdrSmpMVEl1VWxFYzdHOGltWCIsImNvbm5lY3RfdHlwZSI6ImFjdGl2YXRlIiwiaWF0IjoxNzgzMTczMzMwLCJleHAiOjMxNzMyNzYxNTczMH0.JDgJNZWj4yYx0qA-OcI8BndG7B0RJ7WFBa85_BsCxiY\";s:19:\"access_token_secret\";s:32:\"CBEVLZpSChtn16PF7Dv0JRDzFnDHlOol\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":2:{s:5:\"email\";s:21:\"arifbabu587@gmail.com\";s:10:\"first_name\";s:4:\"Arif\";}s:19:\"data_share_opted_in\";b:1;}'),
(20, 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\";}'),
(21, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(22, 1, 'nav_menu_recently_edited', '2'),
(23, 1, 'wpe_user-settings', 'editor=tinymce&libraryContent=browse'),
(24, 1, 'wpe_user-settings-time', '1783545121'),
(25, 1, 'elementor_introduction', 'a:1:{s:20:\"globals_introduction\";b:1;}');

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

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

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

--
-- Dumping data for table `wpe_users`
--

INSERT INTO `wpe_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'web-admin', '$wp$2y$10$1djlCEkzld6RRAMNXPgN1.nbbpQ4Pktoj934kDyjshvxDXdr/eYDO', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/everwell', '2026-07-04 13:43:56', '', 0, 'web-admin');

--
-- Indexes for dumped tables
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- AUTO_INCREMENT for dumped tables
--

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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